Properties.fromJson constructor
Map a new properties instance from a json
map.
Implementation
Properties.fromJson(Map<String, dynamic> json) {
Map<String, Property> properties = Property.propertiesFromJson(json);
this._map.addAll(properties);
}