handleMethodCall method

  1. @visibleForTesting
Future handleMethodCall(
  1. MethodCall call
)

Implementation

@visibleForTesting
Future<dynamic> handleMethodCall(MethodCall call) async {
  switch (call.method) {
    default:
      throw MissingPluginException();
  }
}