unwrap method

  1. @override
  2. @protected
  3. @unsafeOrError
T unwrap()
override

Unsafely returns the contained value. Throws Err the Monad is an Err or None.

Implementation

@override
@protected
@unsafeOrError
@pragma('vm:prefer-inline')
T unwrap() {
  throw this;
}