operator * method

CurrencyAmount operator *(
  1. covariant CurrencyAmount other
)

Implementation

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