| 1234567891011121314151617181920212223 |
- import 'package:flutter/foundation.dart';
- import 'package:flutter/services.dart';
- import 'oaid_platform_interface.dart';
- /// An implementation of [OaidPlatform] that uses method channels.
- class MethodChannelOaid extends OaidPlatform {
- /// The method channel used to interact with the native platform.
- @visibleForTesting
- final methodChannel = const MethodChannel('oaid');
- @override
- Future<String?> getPlatformVersion() async {
- final version =
- await methodChannel.invokeMethod<String>('getPlatformVersion');
- return version;
- }
- @override
- Future<String?> getOaid() async {
- return await methodChannel.invokeMethod<String>('getOaid');
- }
- }
|