Returns true if this BigDecimal equals the specified object.
@override bool operator ==(Object other) { if (identical(this, other)) return true; return other is BigDecimal && compareTo(other) == 0; }