DetailSouthwest.fromJson constructor

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

Implementation

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