Location constructor

Location({
  1. double? lat,
  2. double? lng,
})

Implementation

Location({
  this.lat,
  this.lng,
  // this.address,
});