sendAdmobKey static method

Future<void> sendAdmobKey(
  1. String admobKey
)

Implementation

static Future<void> sendAdmobKey(String admobKey) async {
  if (Platform.isAndroid) {
    try {
      await platform.invokeMethod('setAdmobKey', {'admob_key': admobKey});
    } on PlatformException catch (e) {
    }
  }
}