addAll method

void addAll(
  1. Iterable<EasyAttribute<Object?>> attributes
)

Add all the attributes to the current style map.

Implementation

void addAll(Iterable<EasyAttribute> attributes) {
  for (final EasyAttribute<Object?> attr in attributes) {
    add(attr);
  }
}