addAllFromJson method

void addAllFromJson(
  1. Map<String, dynamic> json
)

Add a group of properties in a json map.

Implementation

void addAllFromJson(Map<String, dynamic> json) {
  Map<String, Property> properties = Property.propertiesFromJson(json);
  this._map.addAll(properties);
}