isEmpty method
Emits true
if this Observable completes without emitting any values,
otherwise emits false
.
Implementation
Observable<bool> isEmpty() => IsEmptyObservable<T>(this);
Emits true
if this Observable completes without emitting any values,
otherwise emits false
.
Observable<bool> isEmpty() => IsEmptyObservable<T>(this);