putAll method

Puts attributes into this attribute set and returns result as a new set.

Implementation

ParchmentStyle putAll(Iterable<ParchmentAttribute> attributes) {
  final result = Map<String, ParchmentAttribute>.from(_data);
  for (final attr in attributes) {
    result[attr.key] = attr;
  }
  return ParchmentStyle._(result);
}