filterNotNull method

FutureOr<T> filterNotNull()

Implementation

FutureOr<T> filterNotNull() {
  return this.thenOrNull((resolved) => resolved!);
}