merge method

AttributeMap<T> merge(
  1. AttributeMap<T>? other
)

Implementation

AttributeMap<T> merge(AttributeMap<T>? other) {
  return other == null ? this : AttributeMap([...values, ...other.values]);
}