GeoJSONPoint.fromJSON constructor

GeoJSONPoint.fromJSON(
  1. String source
)

Constructs a GeoJSONPoint from a JSON string.

Implementation

factory GeoJSONPoint.fromJSON(String source) =>
    GeoJSONPoint.fromMap(json.decode(source));