setBarCodeHeight method

  1. @override
Future<void> setBarCodeHeight(
  1. int height
)
override

Implementation

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