LatLng constructor

const LatLng({
  1. double? latitude,
  2. double? longitude,
})

Creates a new LatLng object with the given latitude and longitude.

Implementation

const LatLng({this.latitude, this.longitude});