DeviceLocation constructor

const DeviceLocation({
  1. required LatLng target,
  2. double? accuracy = 0.0,
  3. double altitude = 0.0,
  4. double? heading = 0.0,
  5. bool isActive = false,
  6. String? object3DAsset,
  7. String? textureAsset,
  8. Color? colorOutlineIndicator,
})

Implementation

const DeviceLocation({
  required this.target,
  this.accuracy = 0.0,
  this.altitude = 0.0,
  this.heading = 0.0,
  this.isActive = false,
  this.object3DAsset,
  this.textureAsset,
  this.colorOutlineIndicator,
});