mod method

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

Computes the remainder of the Euclidean division a % b.

Implementation

@override
int mod(int a, int b) => a % b;