addAll method

  1. @override
void addAll(
  1. Map map
)
override

Add all the values the the map into the object.

Implementation

@override
void addAll(Map map) {
  keys.forEach((key) => this[key] = map[key]);
}