onValue method

Result<V> onValue(
  1. dynamic f(
    1. V
    )
)

Implementation

$async.Result<V> onValue(Function(V) f) => fold((v) {
      f(asValue!.value);
      return this;
    }, (_) => this);