modulo top-level property

double Function(dynamic a, dynamic b) modulo
getter/setter pair

Remainder after division of the first argument by the second one. modulo(a,0) will throw an error.

Implementation

var modulo = _ops.modulo;