firstValue<T> method
key is int index , OR String key
Implementation
T? firstValue<T>([Object col = 0]) {
if (col case int n) return this.firstOrNull?[n] as T?;
return this.firstOrNull?[labelToIndex(col.toString())] as T?;
}
key is int index , OR String key
T? firstValue<T>([Object col = 0]) {
if (col case int n) return this.firstOrNull?[n] as T?;
return this.firstOrNull?[labelToIndex(col.toString())] as T?;
}