toNullableValues<T extends Object> method
Returns all values as an iterable of T?
.
Throws FormatException if a value cannot be represented as T?
.
Implementation
@override
Iterable<T?> toNullableValues<T extends Object>() =>
toNullableValuesOf<T>(list, isExposed: isExposed);