copyWith method
Implementation
GeolocationSpeed copyWith({double? speed, double? accuracy}) {
return GeolocationSpeed(
speed: speed ?? this.speed, accuracy: accuracy ?? this.accuracy);
}
GeolocationSpeed copyWith({double? speed, double? accuracy}) {
return GeolocationSpeed(
speed: speed ?? this.speed, accuracy: accuracy ?? this.accuracy);
}