Fix a type mismatch in IconThemeData.operator==

This commit is contained in:
Jason Simmons 2015-10-21 16:40:02 -07:00
parent 4ab0720189
commit 8288769661

View File

@ -12,7 +12,7 @@ class IconThemeData {
if (other is! IconThemeData)
return false;
final IconThemeData typedOther = other;
return color == typedOther;
return color == typedOther.color;
}
int get hashCode => color.hashCode;