next property

Future<TResult> next

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

Implementation

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