whereResolved method

Stream<Iterable<V>> whereResolved()

Implementation

Stream<Iterable<V>> whereResolved() {
  final result = this.map((records) => records
      .map((record) => record.valueOrNull)
      .whereNotNull() as Iterable<V>);
  return result;
}