firstValue<T> method
Returns the first row's value for column, or null when empty.
Implementation
T? firstValue<T>(String column, {bool ignoreCase = false}) {
final value = cell(0, column, ignoreCase: ignoreCase);
return value is T ? value : null;
}