Properties.fromJson constructor

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

Implementation

factory Properties.fromJson(Map<String, dynamic> json) => Properties(
  location: Location.fromJson(json["location"]),
  unit: Unit.fromJson(json["unit"]),
);