multiplyInt method

UcumDecimal multiplyInt(
  1. int other
)

Implementation

UcumDecimal multiplyInt(int other) {
  return multiply(UcumDecimal.fromInt(other));
}