Location constructor

Location({
  1. String? address,
  2. String? latitude,
  3. String? longitude,
})

Implementation

Location({
  this.address,
  this.latitude,
  this.longitude,
});