startOfferWall method

  1. @override
Future<void> startOfferWall(
  1. String pluginVersion,
  2. String sdkVersion
)
override

Implementation

@override
Future<void> startOfferWall(String pluginVersion, String sdkVersion) async {
  try {
    return await methodChannel.invokeMethod("startOfferWall",
        {'pluginVersion': pluginVersion, "sdkVersion": sdkVersion});
  } on PlatformException catch (e) {
    throw Exception(e.message);
  }
}