copyWith method

GeoBounds copyWith({
  1. GeoPoint? northeast,
  2. GeoPoint? southwest,
})

Implementation

GeoBounds copyWith({GeoPoint? northeast, GeoPoint? southwest}) {
  return GeoBounds(
    northeast: northeast ?? this.northeast,
    southwest: southwest ?? this.southwest,
  );
}