equals method

bool equals(
  1. Object other
)

Implementation

bool equals(Object other) {
  if (other is UcumDecimal) {
    return asUcumDecimal() == other.asUcumDecimal();
  }
  return false;
}