Skip to content

Commit d5a0c90

Browse files
committed
Use Object.all instead of hashValues
1 parent b2bfef6 commit d5a0c90

File tree

5 files changed

+11
-16
lines changed

5 files changed

+11
-16
lines changed

mapbox_gl_platform_interface/lib/src/camera.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class CameraPosition {
8080
}
8181

8282
@override
83-
int get hashCode => hashValues(bearing, target, tilt, zoom);
83+
int get hashCode => Object.hashAll([bearing, target, tilt, zoom]);
8484

8585
@override
8686
String toString() =>

mapbox_gl_platform_interface/lib/src/location.dart

+5-8
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ class LatLng {
1414
/// The longitude is normalized to the half-open interval from -180.0
1515
/// (inclusive) to +180.0 (exclusive)
1616
const LatLng(double latitude, double longitude)
17-
: latitude =
18-
(latitude < -90.0 ? -90.0 : (90.0 < latitude ? 90.0 : latitude)),
17+
: latitude = (latitude < -90.0 ? -90.0 : (90.0 < latitude ? 90.0 : latitude)),
1918
longitude = (longitude + 180.0) % 360.0 - 180.0;
2019

2120
/// The latitude in degrees between -90.0 and 90.0, both inclusive.
@@ -53,7 +52,7 @@ class LatLng {
5352
}
5453

5554
@override
56-
int get hashCode => hashValues(latitude, longitude);
55+
int get hashCode => Object.hashAll([latitude, longitude]);
5756
}
5857

5958
/// A latitude/longitude aligned rectangle.
@@ -100,13 +99,11 @@ class LatLngBounds {
10099

101100
@override
102101
bool operator ==(Object o) {
103-
return o is LatLngBounds &&
104-
o.southwest == southwest &&
105-
o.northeast == northeast;
102+
return o is LatLngBounds && o.southwest == southwest && o.northeast == northeast;
106103
}
107104

108105
@override
109-
int get hashCode => hashValues(southwest, northeast);
106+
int get hashCode => Object.hashAll([southwest, northeast]);
110107
}
111108

112109
/// A geographical area representing a non-aligned quadrilateral
@@ -164,7 +161,7 @@ class LatLngQuad {
164161
}
165162

166163
@override
167-
int get hashCode => hashValues(topLeft, topRight, bottomRight, bottomLeft);
164+
int get hashCode => Object.hashAll([topLeft, topRight, bottomRight, bottomLeft]);
168165
}
169166

170167
/// User's observed location

mapbox_gl_platform_interface/lib/src/ui.dart

+3-5
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ class MapboxStyles {
2929
/// Satellite Streets: Global satellite and aerial imagery with unobtrusive labels. Using this
3030
/// constant means your map style will always use the latest version and may change as we
3131
/// improve the style.
32-
static const String SATELLITE_STREETS =
33-
"mapbox://styles/mapbox/satellite-streets-v11";
32+
static const String SATELLITE_STREETS = "mapbox://styles/mapbox/satellite-streets-v11";
3433

3534
/// Traffic Day: Color-coded roads based on live traffic congestion data. Traffic data is currently
3635
/// available in
@@ -129,8 +128,7 @@ class MinMaxZoomPreference {
129128
final double? maxZoom;
130129

131130
/// Unbounded zooming.
132-
static const MinMaxZoomPreference unbounded =
133-
MinMaxZoomPreference(null, null);
131+
static const MinMaxZoomPreference unbounded = MinMaxZoomPreference(null, null);
134132

135133
dynamic toJson() => <dynamic>[minZoom, maxZoom];
136134

@@ -143,7 +141,7 @@ class MinMaxZoomPreference {
143141
}
144142

145143
@override
146-
int get hashCode => hashValues(minZoom, maxZoom);
144+
int get hashCode => Object.hashAll([minZoom, maxZoom]);
147145

148146
@override
149147
String toString() {

mapbox_gl_platform_interface/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ dependencies:
99
meta: ^1.0.5
1010

1111
environment:
12-
sdk: '>=2.12.0 <3.0.0'
12+
sdk: '>=2.14.0 <3.0.0'
1313
flutter: ">=2.0.0"

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ flutter:
3434
default_package: mapbox_gl_web
3535

3636
environment:
37-
sdk: '>=2.12.0 <3.0.0'
37+
sdk: '>=2.14.0 <3.0.0'
3838
# Flutter versions prior to 1.10 did not support the flutter.plugin.platforms map.
3939
flutter: ">=2.0.0"

0 commit comments

Comments
 (0)