handleMethodCall method

Future handleMethodCall(
  1. MethodCall call
)

Handle incomming messages

Implementation

Future<dynamic> handleMethodCall(MethodCall call) async {
  switch (call.method) {
    case 'start':
      return _start(call.arguments as Map);
    case 'torch':
      return _torch(call.arguments);
    case 'stop':
      return cancel();
    default:
      throw PlatformException(
        code: 'Unimplemented',
        details: "The mobile_scanner plugin for web doesn't implement "
            "the method '${call.method}'",
      );
  }
}