Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
== override parameters are non-nullable (#117839)
Browse files Browse the repository at this point in the history
  • Loading branch information
srawlins authored Jan 4, 2023
1 parent 9080d1a commit 63653e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/flutter/lib/src/material/about.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 63653e8

Please sign in to comment.