Showing
2 changed files
with
2 additions
and
1 deletions
@@ -7,6 +7,7 @@ | @@ -7,6 +7,7 @@ | ||
7 | - Update barcode golden pdf | 7 | - Update barcode golden pdf |
8 | - Add support for hyphenation [ilja] | 8 | - Add support for hyphenation [ilja] |
9 | - Add an option to disable bidirectional support [Olzhas-Suleimen] | 9 | - Add an option to disable bidirectional support [Olzhas-Suleimen] |
10 | +- Fix operator== type in TextDecoration class | ||
10 | 11 | ||
11 | ## 3.10.7 | 12 | ## 3.10.7 |
12 | 13 |
@@ -68,7 +68,7 @@ class TextDecoration { | @@ -68,7 +68,7 @@ class TextDecoration { | ||
68 | } | 68 | } |
69 | 69 | ||
70 | @override | 70 | @override |
71 | - bool operator ==(dynamic other) { | 71 | + bool operator ==(Object other) { |
72 | if (other is! TextDecoration) { | 72 | if (other is! TextDecoration) { |
73 | return false; | 73 | return false; |
74 | } | 74 | } |
-
Please register or login to post a comment