Location constructor

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

Implementation

Location({
  this.long,
  this.lat,
});