asNonNullableMap<T> method

Stream<Map<String, T>> asNonNullableMap<T>({
  1. String? format,
})

Returns a stream where each snapshot is converted to a non-nullable map with values of type T.

Implementation

Stream<Map<String, T>> asNonNullableMap<T>({String? format}) =>
    map((s) => s.asNonNullableMap<T>(format: format));