startOfferWall method
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);
}
}