setBarCodeWidth method

  1. @override
Future<void> setBarCodeWidth(
  1. int width
)
override

Implementation

@override
Future<void> setBarCodeWidth(int width) async {
  Map<String, dynamic> arguments = <String, dynamic>{
    "width": width,
  };
  await methodChannel.invokeMethod<void>('setBarCodeWidth', arguments);
}