div method

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

Computes the division: a / b.

Implementation

@override
int div(int a, int b) => a ~/ b;