getGoogleAdId static method

Future<String?> getGoogleAdId()

Implementation

static Future<String?> getGoogleAdId() async {
  final String? googleAdId = await _channel.invokeMethod('getGoogleAdId');
  return googleAdId;
}