The modulo operator performs a Euclidean modulo operation, as Dart performs it. That is, a % b = a – floor(a / |b|) |b| . For positive integers, this is a remainder.
The modulo operator performs a Euclidean modulo operation, as Dart performs it. That is, a % b = a – floor(a / |b|) |b| . For positive integers, this is a remainder.