callbackHandler method

Future callbackHandler(
  1. MethodCall methodCall
)

Implementation

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