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