提交 bfa7489a 编写于 作者: J Jason Simmons

Fix a type mismatch in IconThemeData.operator==

上级 fbd698d1
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册