remainder method

int remainder(
  1. int value
)

Returns the remainder of the division.

Implementation

int remainder(int value) => this % value;