File tree 4 files changed +7
-3
lines changed
geocoding_platform_interface
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.2.1
2
+
3
+ - Fixed analysis warnings from ` flutter analyse ` .
4
+
1
5
## 3.2.0
2
6
3
7
- Adds ` isPresent ` method to the platform interface.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class Location {
28
28
final DateTime timestamp;
29
29
30
30
@override
31
- bool operator == (dynamic other) =>
31
+ bool operator == (Object other) =>
32
32
other is Location &&
33
33
other.latitude == latitude &&
34
34
other.longitude == longitude &&
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class Placemark {
68
68
final String ? subThoroughfare;
69
69
70
70
@override
71
- bool operator == (dynamic other) =>
71
+ bool operator == (Object other) =>
72
72
other is Placemark &&
73
73
other.administrativeArea == administrativeArea &&
74
74
other.country == country &&
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: A common platform interface for the geocoding plugin.
3
3
homepage : https://github.com/baseflow/flutter-geocoding/tree/main/geocoding_platform_interface
4
4
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
5
5
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
6
- version : 3.2.0
6
+ version : 3.2.1
7
7
8
8
dependencies :
9
9
flutter :
You can’t perform that action at this time.
0 commit comments