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