callbackHandler method
Implementation
Future<dynamic> callbackHandler(MethodCall methodCall) async {
print('$methodCall.method');
switch (methodCall.method) {
default:
throw MissingPluginException('notImplemented');
}
}
Future<dynamic> callbackHandler(MethodCall methodCall) async {
print('$methodCall.method');
switch (methodCall.method) {
default:
throw MissingPluginException('notImplemented');
}
}