mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
== override parameters are non-nullable (#117839)
This commit is contained in:
parent
9080d1acc5
commit
63653e8272
@ -756,7 +756,7 @@ class _DetailArguments {
|
|||||||
final List<LicenseEntry> licenseEntries;
|
final List<LicenseEntry> licenseEntries;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
bool operator ==(final dynamic other) {
|
bool operator ==(final Object other) {
|
||||||
if (other is _DetailArguments) {
|
if (other is _DetailArguments) {
|
||||||
return other.packageName == packageName;
|
return other.packageName == packageName;
|
||||||
}
|
}
|
||||||
|
@ -462,7 +462,7 @@ class _CursorUpdateDetails extends MethodCall {
|
|||||||
Map<String, dynamic> get arguments => super.arguments as Map<String, dynamic>;
|
Map<String, dynamic> get arguments => super.arguments as Map<String, dynamic>;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
bool operator ==(dynamic other) {
|
bool operator ==(Object other) {
|
||||||
if (identical(other, this)) {
|
if (identical(other, this)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user