$_itemColumn<C extends Object> method
Extracts the value of a column with the given name
in the
$_typedResult row.
Implementation
// ignore: non_constant_identifier_names
C? $_itemColumn<C extends Object>(String name) {
return $_typedResult.read($_table.columnsByName[name]! as Expression<C>);
}