copyWithWrapped method
Implementation
GeolocationHeading copyWithWrapped(
{Wrapped<double?>? direction, Wrapped<double?>? accuracy}) {
return GeolocationHeading(
direction: (direction != null ? direction.value : this.direction),
accuracy: (accuracy != null ? accuracy.value : this.accuracy));
}