LocationModel constructor

LocationModel({
  1. double? long,
  2. double? lat,
  3. num? heading,
})

Implementation

LocationModel({
  this.long,
  this.lat,
  this.heading,
});