TCsvRow constructor
Implementation
TCsvRow({
String? id,
Map<String, dynamic>? values,
Map<String, String>? errors,
}) : id = id ?? 'row_${++_autoIdCounter}_${DateTime.now().microsecondsSinceEpoch}',
values = values != null ? Map<String, dynamic>.from(values) : <String, dynamic>{},
errors = errors != null ? Map<String, String>.from(errors) : <String, String>{};