multiply static method

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

Implementation

static int multiply(int a, int b) => (a * b) % _modulus;