fromJsonGeoPoint static method

GeoFirePoint? fromJsonGeoPoint(
  1. Map<String, dynamic> json
)

Implementation

static GeoFirePoint? fromJsonGeoPoint(Map<String, dynamic> json) =>
    json['geopoint'] == null ? null : json['geopoint'] as GeoFirePoint?;