operator / method
Implementation
CurrencyAmount operator /(covariant CurrencyAmount other) {
final divide = super.divide(other);
return CurrencyAmount.fromFractionalAmount(
currency, divide.numerator, divide.denominator);
}
CurrencyAmount operator /(covariant CurrencyAmount other) {
final divide = super.divide(other);
return CurrencyAmount.fromFractionalAmount(
currency, divide.numerator, divide.denominator);
}