operator == method
Checks if two instances of IssuedCurrency are equal.
Implementation
@override
operator ==(other) {
return other is IssuedCurrency &&
currency == other.currency &&
issuer == other.issuer &&
runtimeType == other.runtimeType;
}