copyWith method

Map<K, V> copyWith(
  1. Map<K, V> other
)

Implementation

Map<K, V> copyWith(Map<K, V> other) {
  addAll(other);
  return this;
}