handleMethodCall static method

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

Implementation

@visibleForTesting
static Future<dynamic> handleMethodCall(MethodCall call) async {
  switch (call.method) {
    default:
      throw UnimplementedError("Method not implemented: ${call.method}");
  }
}