setMethodCallHandler static method

void setMethodCallHandler(
  1. Future handler(
    1. MethodCall call
    )
)

Implementation

static void setMethodCallHandler(Future<dynamic> Function(MethodCall call) handler) {
  _channel.setMethodCallHandler(handler);
}