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