divideInt method

UcumDecimal divideInt(
  1. int other
)

Implementation

UcumDecimal divideInt(int other) {
  return divide(UcumDecimal.fromInt(other));
}