setAll method

void setAll(
  1. Map<String, String?> configs
)

Allow to set all values into config values

Implementation

void setAll(Map<String, String?> configs) {
  configs.forEach((key, value) {
    set(key, value);
  });
}