mul method

  1. @override
int mul(
  1. int a,
  2. int b
)
override

Computes the multiplication: a * b.

Implementation

@override
int mul(int a, int b) => a * b;