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