BrnSelectionMenuWidget constructor

BrnSelectionMenuWidget({
  1. Key? key,
  2. required BuildContext context,
  3. required List<SelectionEntity> data,
  4. double height = 50.0,
  5. double? width,
  6. BrnOnMenuItemClick? onMenuItemClick,
  7. BrnOnRangeSelectionConfirm? onConfirm,
  8. ConfigTagCountPerRow? configRowCount,
  9. ScrollController? extraScrollController,
  10. double? constantTop,
  11. required SelectionConfig themeData,
})

Implementation

BrnSelectionMenuWidget(
    {Key? key,
    required this.context,
    required this.data,
    this.height = 50.0,
    this.width,
    this.onMenuItemClick,
    this.onConfirm,
    this.configRowCount,
    this.extraScrollController,
    this.constantTop,
    required this.themeData})
    : super(key: key);