LocationMarkerHeading.unchecked constructor

const LocationMarkerHeading.unchecked({
  1. required double heading,
  2. required double accuracy,
})

Create a LocationMarkerHeading without validation.

Implementation

const LocationMarkerHeading.unchecked({
  required this.heading,
  required this.accuracy,
});