ifNone abstract method

Result<Option<T>> ifNone(
  1. @noFuturesAllowed void noFuturesAllowed()
)

Performs a side-effect if this is a None.

Implementation

Result<Option<T>> ifNone(@noFuturesAllowed void Function() noFuturesAllowed);