nativeMethodCallHandler method
Implementation
Future<dynamic> nativeMethodCallHandler(MethodCall methodCall) async {
if (methodCall.method == "onBarcodeRead") {
if (widget.onBarcodeRead != null)
widget.onBarcodeRead!(methodCall.arguments);
}
return null;
}