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