LatLng.fromJson constructor

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

Implementation

LatLng.fromJson(Map<String, dynamic> json)
    : latitude = json['coordinates'][1],
      longitude = json['coordinates'][0];