printRow static method
printRow
This method will print a row based in a list of ColumnMaker.
Implementation
static Future<void> printRow({required List<ColumnMaker> cols}) async {
final jsonCols = List<Map<String, String>>.from(cols.map<Map<String, String>>((ColumnMaker col) => col.toJson()));
Map<String, dynamic> arguments = <String, dynamic>{"cols": json.encode(jsonCols)};
await _channel.invokeMethod("PRINT_ROW", arguments);
}