GeoJSONMultiLineString.fromJSON constructor

GeoJSONMultiLineString.fromJSON(
  1. String source
)

Creates a new GeoJSONMultiLineString object from a JSON string.

The JSON string must represent a valid GeoJSON MultiLineString object.

Implementation

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