onMethodCall method

  1. @mustCallSuper
Future onMethodCall(
  1. MethodCall call
)

Implementation

@mustCallSuper
Future<dynamic> onMethodCall(MethodCall call) async {
  switch (call.method) {
    default:
      throw UnimplementedError("${call.method} was invoked but isn't implemented by YPayPlatformViewsService");
  }
}