asList<T> method

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

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

Implementation

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