printRow method
Print a row of text with specified columns, widths, and styles.
Implementation
@override
Future<String?> printRow(
{required List text, required List width, required List style}) async {
return await methodChannel.invokeMethod<String>('printRow', {
'data': {
"text": text,
"width": width,
"style": style,
}
});
}