RangeSelectionGroupWidget constructor

const RangeSelectionGroupWidget({
  1. Key? key,
  2. required SelectionEntity entity,
  3. double maxContentHeight = DESIGN_SELECTION_HEIGHT,
  4. int? rowCount,
  5. bool showSelectedCount = false,
  6. VoidCallback? bgClickFunction,
  7. BrnOnRangeSelectionConfirm? onSelectionConfirm,
  8. double marginTop = 0,
  9. required SelectionConfig themeData,
})

Implementation

const RangeSelectionGroupWidget(
    {Key? key,
    required this.entity,
    this.maxContentHeight = DESIGN_SELECTION_HEIGHT,
    this.rowCount,
    this.showSelectedCount = false,
    this.bgClickFunction,
    this.onSelectionConfirm,
    this.marginTop = 0,
    required this.themeData})
    : super(key: key);