Properties.fromJson constructor

Properties.fromJson(
  1. Map<String, dynamic> json
)

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);
}