asNonNullableList<T> method

Stream<List<T>> asNonNullableList<T>({
  1. String? format,
})

Returns a stream where each snapshot is converted to a non-nullable list of objects of type T.

Implementation

Stream<List<T>> asNonNullableList<T>({String? format}) =>
    map((s) => s.asNonNullableList<T>(format: format));