Aoi.fromJson constructor

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

Implementation

Aoi.fromJson(Map<String, dynamic> json) {
  adCode = json['adCode'];
  aoiArea = json['aoiArea'];
  aoiCenterPoint = json['aoiCenterPoint'] != null ? LatLng.fromJson(json['aoiCenterPoint']) : null;
  aoiId = json['aoiId'];
  aoiName = json['aoiName'];
}