getBiggerOffset property

Offset getBiggerOffset

get the bigger offsets by filtering the spacing horizontally and vertically ex:(0,0..0,30) when spacing set to 30

Implementation

Offset get getBiggerOffset {
  Offset smallOffset = getSmallerOffset;

  return Offset(smallOffset.dx * spacing.dx + spacing.dx / 2,
      smallOffset.dy * spacing.dy + spacing.dy / 2);
}