AxisBoundedSelection.crossAxisUnbounded constructor

const AxisBoundedSelection.crossAxisUnbounded({
  1. required Axis axis,
  2. required RangeEdge anchorEdge,
  3. required int start,
  4. required int end,
})

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);