Concat method

Map Concat(
  1. Map? other
)

Implementation

Map Concat(Map? other) {
  other?.forEach((key, value) {
    if(!this.containsKey(key))
      this[key] = value;
  });

  return this;
}