subtract method

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

Implementation

void subtract(int a, int b) {
  publish("Subtraction: ${a - b}");
}