Commit 8d899d0 1 parent 16b7348 commit 8d899d0 Copy full SHA for 8d899d0
File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2148,8 +2148,8 @@ class ThemeData with Diagnosticable {
2148
2148
// GENERAL CONFIGURATION
2149
2149
applyElevationOverlayColor,
2150
2150
cupertinoOverrideTheme,
2151
- hashList ( extensions.keys) ,
2152
- hashList ( extensions.values) ,
2151
+ ... extensions.keys,
2152
+ ... extensions.values,
2153
2153
inputDecorationTheme,
2154
2154
materialTapTargetSize,
2155
2155
pageTransitionsTheme,
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ export 'dart:ui' show
43
43
VertexMode,
44
44
// TODO(werainkhatri): remove these after their deprecation period in engine
45
45
// https://github.com/flutter/flutter/pull/99505
46
- hashValues,
47
- hashList;
46
+ hashValues, // ignore: deprecated_member_use
47
+ hashList; // ignore: deprecated_member_use
48
48
49
49
export 'package:flutter/foundation.dart' show VoidCallback;
50
50
Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ class SelectionGeometry {
523
523
524
524
@override
525
525
int get hashCode {
526
- return hashValues (
526
+ return Object . hash (
527
527
startSelectionPoint,
528
528
endSelectionPoint,
529
529
status,
@@ -574,7 +574,7 @@ class SelectionPoint {
574
574
575
575
@override
576
576
int get hashCode {
577
- return hashValues (
577
+ return Object . hash (
578
578
localPosition,
579
579
lineHeight,
580
580
handleType,
You can’t perform that action at this time.
0 commit comments