LocationRequest constructor

LocationRequest({
  1. String? name,
  2. double? lat,
  3. double? lng,
})

Implementation

LocationRequest({
  this.name,
  this.lat,
  this.lng,
});