next property

Future<TResult> next

This property is a utility which allows us to chain RxCommands together.

Implementation

Future<TResult> get next =>
    Rx.merge<TResult>([this, this.thrownExceptions.cast<TResult>()])
        .take(1)
        .last;