FractionalOffset operator -(FractionalOffset other)

Returns the difference between two fractional offsets.

Source

FractionalOffset operator -(FractionalOffset other) {
  return new FractionalOffset(dx - other.dx, dy - other.dy);
}