setOrNull method
Sets the contents of the cell to value. Returns null if the value is already set.
Implementation
@override
T? setOrNull(T value) {
if (_val != null) {
return null;
}
_val = value;
return value;
}
Sets the contents of the cell to value. Returns null if the value is already set.
@override
T? setOrNull(T value) {
if (_val != null) {
return null;
}
_val = value;
return value;
}