Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use Object in operator == for mocking
  • Loading branch information
evan361425 authored May 23, 2022
commit e4cca8d696a5b4ae71d752e34d675712fdadcac8
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class GoogleSignInAccount implements GoogleIdentity {
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
if (identical(this, other)) {
return true;
}
Expand Down