AxisBoundedSelection.crossAxisUnbounded constructor
const
AxisBoundedSelection.crossAxisUnbounded({})
Creates a AxisBoundedSelection in which the opposite axis to axis
is
unbounded in both edges.
Implementation
const AxisBoundedSelection.crossAxisUnbounded({
required this.axis,
required this.anchorEdge,
// left fot horizontal, top for vertical
required int start,
// right fot horizontal, bottom for vertical
required int end,
}) : crossAxisBound = null,
crossAxisBoundedEdge = null,
super(start, end);