orElse method
T
orElse(
- T other
Returns the value or a fallback when empty.
Implementation
T orElse(T other) => _value ?? other;
Returns the value or a fallback when empty.
T orElse(T other) => _value ?? other;