next property
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;
This property is a utility which allows us to chain RxCommands together.
Future<TResult> get next => Observable.merge([this, this.thrownExceptions.cast<TResult>()]).take(1).last;