thenChain<R> method

Future<R> thenChain<R>(
  1. FutureOr<R> onValue(
    1. T value
    )
)

Implementation

Future<R> thenChain<R>(FutureOr<R> Function(T value) onValue) =>
    _chainCapture(() => then((o) => onValue(o)));