copyWith method

LatLng copyWith({
  1. double? latitude,
  2. double? longitude,
})

Implementation

LatLng copyWith({
  double? latitude,
  double? longitude,
}) {
  return LatLng(
    latitude ?? this.latitude,
    longitude ?? this.longitude,
  );
}