MapStream<K, V>.from constructor

MapStream<K, V>.from(
  1. Map<K, V?> other
)

Creates a MapStream with the same keys and values as other.

Implementation

MapStream.from(Map<K, V?> other)
    : this._(defaultMap: Map.unmodifiable(other));