getOrNull method

T? getOrNull()

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

Implementation

@pragma("vm:prefer-inline")
T? getOrNull() {
  return _val;
}