multiply method

void multiply(
  1. int a,
  2. int b
)

Implementation

void multiply(int a, int b) {
  publish("Multiplication: ${a * b}");
}