printRow method
Future<void>
printRow({
- required String cols,
- bool bold = false,
- bool underline = false,
- int textSize = 24,
- int linesAfter = 0,
override
Print row
Implementation
@override
Future<void> printRow({
required String cols,
bool bold = false,
bool underline = false,
int textSize = 24,
int linesAfter = 0,
}) async {
await methodChannel.invokeMethod('printRow', {
'cols': cols,
'bold': bold,
'underline': underline,
'textSize': textSize,
'linesAfter': linesAfter,
});
}