unwrapOr method

  1. @override
T unwrapOr(
  1. T v
)
override

Unwrap the Ok value, or return the default if there is an Err

@param v the default value to return if there is an Err

Implementation

@override
T unwrapOr(T v) => this.value;