remainder method

num remainder(
  1. num value
)

Returns the remainder of the division.

Implementation

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