putAll method

void putAll(
  1. List<CSSEntry<CSSValue>> entries
)

Implementation

void putAll(List<CSSEntry> entries) {
  if (entries.isEmpty) return;

  for (var entry in entries) {
    putEntry(entry);
  }
}