expectNotNull method

Stream<X> expectNotNull()

Implementation

Stream<X> expectNotNull() {
  return this.map((nullable) => nullable!);
}