debugFields property
Gets the debug fields for printing.
Returns a Map<String, dynamic>
containing the fields to be used for debug printing.
Implementation
@override
Map<String, dynamic> get debugFields {
final rows = _getRows();
return {
'matrix': '[\n ${rows.map((r) => r.join(', ')).join('\n ')}\n]',
};
}