getOaid method

  1. @override
Future<Supplier> getOaid()
override

Implementation

@override
Future<Supplier> getOaid() async {
  assert(
      Platform.isAndroid || Platform.environment['FLUTTER_TEST'] == 'true');
  final Map<String, dynamic>? result =
      await methodChannel.invokeMapMethod<String, dynamic>('getOaid');
  return Supplier.fromJson(result!);
}