loadMap method

void loadMap(
  1. Map<String, dynamic> map
)

Loads the shallow values of the given map into the stored Setters

Implementation

void loadMap(Map<String, dynamic> map) {
  keys.forEach((element) => this[element]!.item2(map[element]));
}