Location constructor

Location({
  1. String? extra,
  2. int? client_id,
  3. double? latitude,
  4. double? longitude,
  5. double? horizontal_accuracy,
})

Implementation

Location({
  super.extra,
  super.client_id,
  this.latitude,
  this.longitude,
  this.horizontal_accuracy,
});