getSmallerOffset property

Offset getSmallerOffset

get the smaller converted offsets ex:(0,0.. 0,1)

Implementation

Offset get getSmallerOffset {
  return Offset((offset.dx ~/ spacing.dx).toDouble(),
      (offset.dy ~/ spacing.dy).toDouble());
}