Coordinates.fromMap constructor

Coordinates.fromMap(
  1. Map map
)

Creates coordinates from a map containing its properties.

Implementation

Coordinates.fromMap(Map map)
    : this.latitude = map["latitude"],
      this.longitude = map["longitude"];