fromJson static method
Implementation
static GeoFirePoint? fromJson(Map<String, dynamic>? json) {
GeoPoint? geoPoint = getGeoPoint(json);
if (geoPoint != null) {
return GeoFirePoint(GeoPoint(geoPoint.latitude, geoPoint.longitude));
}
return null;
}