or method

T or (T fallback)

Implementation

T? or(T? fallback) {
  if (isDefined) {
    return _value;
  } else {
    return fallback;
  }
}