registerWith static method

void registerWith(
  1. Registrar registrar
)

Implementation

static void registerWith(Registrar registrar) {
  final PluginEventChannel event = PluginEventChannel(
    'dev.steenbakker.mobile_scanner/scanner/event',
    const StandardMethodCodec(),
    registrar,
  );
  final MethodChannel channel = MethodChannel(
    'dev.steenbakker.mobile_scanner/scanner/method',
    const StandardMethodCodec(),
    registrar,
  );
  final MobileScannerWebPlugin instance = MobileScannerWebPlugin();
  WidgetsFlutterBinding.ensureInitialized();

  channel.setMethodCallHandler(instance.handleMethodCall);
  event.setController(instance.controller);
}