Unverified Commit 63653e82 authored by Sam Rawlins's avatar Sam Rawlins Committed by GitHub

== override parameters are non-nullable (#117839)

parent 9080d1ac
......@@ -756,7 +756,7 @@ class _DetailArguments {
final List<LicenseEntry> licenseEntries;
@override
bool operator ==(final dynamic other) {
bool operator ==(final Object other) {
if (other is _DetailArguments) {
return other.packageName == packageName;
}
......
......@@ -462,7 +462,7 @@ class _CursorUpdateDetails extends MethodCall {
Map<String, dynamic> get arguments => super.arguments as Map<String, dynamic>;
@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
if (identical(other, this)) {
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment