setFontCharSize method

  1. @override
Future<void> setFontCharSize(
  1. int height,
  2. int width,
  3. int underLine,
  4. int asciiType,
)
override

Implementation

@override
Future<void> setFontCharSize(
    int height, int width, int underLine, int asciiType) async {
  await methodChannel.invokeMethod<void>('setFontCharSize', {
    "height": height,
    "width": width,
    "underLine": underLine,
    "asciiType": asciiType
  });
}