$LatLng constructor

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

Implementation

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