operator % method

  1. @override
AlignmentDirectional operator % (double other)
override

Computes the remainder in each dimension by the given factor.

Implementation

@override
AlignmentDirectional operator %(double other) {
  return AlignmentDirectional(start % other, y % other);
}