operator & method

MapSignal<K, V> operator &(
  1. Map<K, V> other
)

Fork: create a new signal with value is the concatenation of source signal and iterable parameter

Implementation

MapSignal<K, V> operator &(Map<K, V> other) {
  final rs = Map<K, V>.from(peek())..addAll(other);
  return MapSignal(rs);
}