onCreate method

dynamic onCreate(
  1. int id
)

Implementation

onCreate(int id) {
  handler = (call) => _dealMethodCall(call);
  _channel = MethodChannel("flutter_customized_scan_$id");
  _channel.setMethodCallHandler(handler);
}