AxisBoundedSelection.crossAxisPartiallyBounded constructor
const
AxisBoundedSelection.crossAxisPartiallyBounded({})
Creates a AxisBoundedSelection in which the opposite axis to axis
is
partially bounded, this means that at least the and or start edges
of that axis should be provided.
Implementation
const AxisBoundedSelection.crossAxisPartiallyBounded({
required this.axis,
required this.anchorEdge,
// left fot horizontal, top for vertical
required int start,
// right fot horizontal, bottom for vertical
required int end,
required RangeEdge this.crossAxisBoundedEdge,
required int this.crossAxisBound,
}) : super(start, end);