readTableOrNull<T extends HasResultSet, D> method
Reads all data that belongs to the given table
from this row.
Returns null
if this row does not contain non-null values of the
table
.
See also: readTable, which throws instead of returning null
.
Implementation
D? readTableOrNull<T extends HasResultSet, D>(
ResultSetImplementation<T, D> table) {
return _parsedData[table] as D?;
}