DetailSouthwest.fromJson constructor

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

Implementation

DetailSouthwest.fromJson(Map<String, dynamic> json) {
  if (json["lat"] is double) this.lat = json["lat"];
  if (json["lng"] is double) this.lng = json["lng"];
}