Commit 82887696 authored by Jason Simmons's avatar Jason Simmons

Fix a type mismatch in IconThemeData.operator==

parent 4ab07201
...@@ -12,7 +12,7 @@ class IconThemeData { ...@@ -12,7 +12,7 @@ class IconThemeData {
if (other is! IconThemeData) if (other is! IconThemeData)
return false; return false;
final IconThemeData typedOther = other; final IconThemeData typedOther = other;
return color == typedOther; return color == typedOther.color;
} }
int get hashCode => color.hashCode; int get hashCode => color.hashCode;
......
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