RxCommandStream<TParam, TResult> constructor
Implementation
factory RxCommandStream(StreamProvider<TParam, TResult> provider, [Observable<bool> canExecute] )
{
return new RxCommandStream._(provider, new BehaviorSubject<CommandResult<TResult>>(seedValue: new CommandResult<TResult>(null, null, false)), canExecute);
}