setFontCharSize method
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
});
}