unwrapOr method
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;
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
@override
T unwrapOr(T v) => this.value;