unwrapOr abstract method

FutureOr<T> unwrapOr(
  1. T fallback
)

Returns the contained value, or the fallback if the Outcome is in an Err or None state.

Implementation

FutureOr<T> unwrapOr(T fallback);