assoc method
Get data for all columns
Implementation
Map<String, String?> assoc() {
final result = <String, String?>{};
int colIndex = 0;
for (final colDef in _colDefs) {
result[colDef.name] = _values[colIndex];
colIndex++;
}
return result;
}