or method

T or(
  1. T defaultValue
)

Gets the Optional value with a default.

The default is returned if the Optional is absent().

Throws ArgumentError if defaultValue is null.

Implementation

T or(T defaultValue) {
  return _value ?? defaultValue;
}