Coordinates.fromJson constructor

Coordinates.fromJson(
  1. Map<String, dynamic> json
)

Creates a Coordinates instance from a JSON map.

The json parameter is a map containing key-value pairs that represent the properties of the Coordinates object.

Returns a Coordinates object.

Implementation

factory Coordinates.fromJson(Map<String, dynamic> json) =>
    _$CoordinatesFromJson(json);