AxisBoundedSelection.crossAxisPartiallyBounded constructor

const AxisBoundedSelection.crossAxisPartiallyBounded({
  1. required Axis axis,
  2. required RangeEdge anchorEdge,
  3. required int start,
  4. required int end,
  5. required RangeEdge crossAxisBoundedEdge,
  6. required int crossAxisBound,
})

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