getOrNull method
Gets the underlying value, returns null if the cell is empty
Implementation
@override
T? getOrNull() {
final val = _cache[this] as (T,)?;
if (val == null) {
return null;
}
return val.$1;
}
Gets the underlying value, returns null if the cell is empty
@override
T? getOrNull() {
final val = _cache[this] as (T,)?;
if (val == null) {
return null;
}
return val.$1;
}