Closed
Description
This code:
@override
bool operator ==(dynamic other) {
if (other.runtimeType != runtimeType)
return false;
final AvatarImage typedOther = other as AvatarImage; // line 465
return username == typedOther.username
&& photoManager == typedOther.photoManager
&& twitarr == typedOther.twitarr;
}
Led to this message from the analyzer:
[info] Test type arguments in operator ==(Object other) (/home/ianh/dev/cruisemonkey/lib/src/logic/cruise.dart:465:36)
I have no idea what this means.