remainder method

double remainder(
  1. num other
)

Returns the remainder of this value divided by other.

Implementation

double remainder(num other) => value.remainder(other);