David PHAM-VAN

Fix graphic state operator

... ... @@ -5,6 +5,7 @@
- Use the Barcode library to generate QR-Codes
- Fix Jpeg size detection
- Update dependency to Barcode 1.8.0
- Fix graphic state operator
## 1.6.1
... ...
... ... @@ -40,7 +40,7 @@ class PdfGraphicState {
@override
bool operator ==(dynamic other) {
if (!other is PdfGraphicState) {
if (!(other is PdfGraphicState)) {
return false;
}
return other.opacity == opacity;
... ...