withDecoder method

Stream<Snapshot> withDecoder(
  1. SnapshotDecoder decoder
)

Returns a snapshot stream where each snapshot has the decoder decoder.

Implementation

Stream<Snapshot> withDecoder(SnapshotDecoder decoder) =>
    map((s) => s.withDecoder(decoder));