operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

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;
}