getOrNull method

T? getOrNull()

Gets the underlying value, returns null if the cell is empty

Implementation

T? getOrNull() {
  return _val;
}