operator == method

bool operator ==(
  1. Object o
)
override

Comparative operators

Implementation

bool operator ==(o) =>
    (o is Currency && o.hashCode == hashCode) ||
    (o is BigInt && o.hashCode == pasc.hashCode) ||
    (o is String && o.hashCode == pasc.toString().hashCode);