byName<T> method
Implementation
T? byName<T>(String name) {
int? i = _fieldIndex![name];
if (i == null) throw Exception("Field named $name not found in this row!");
return this[i];
}
T? byName<T>(String name) {
int? i = _fieldIndex![name];
if (i == null) throw Exception("Field named $name not found in this row!");
return this[i];
}