copyWith method
Implementation
TileLocation copyWith({
double? lat,
double? lng,
}) {
return TileLocation(
lat: lat ?? this.lat,
lng: lng ?? this.lng,
);
}
TileLocation copyWith({
double? lat,
double? lng,
}) {
return TileLocation(
lat: lat ?? this.lat,
lng: lng ?? this.lng,
);
}