fromJsonMap static method
Implementation
static LatLng? fromJsonMap(dynamic json) {
  if (json == null) return null;
  return LatLng(json["latitude"]??0, json["longitude"]??0);
}static LatLng? fromJsonMap(dynamic json) {
  if (json == null) return null;
  return LatLng(json["latitude"]??0, json["longitude"]??0);
}