Size operator %(double operand)

Modulo (remainder) operator. Returns a size whose dimensions are the remainder of dividing the left-hand-side operand (a Size) by the scalar right-hand-side operand (a double).

Source

Size operator %(double operand) => new Size(width % operand, height % operand);