BrnSelectionMenuItemWidget constructor

BrnSelectionMenuItemWidget({
  1. Key? key,
  2. required String title,
  3. bool isHighLight = false,
  4. bool active = false,
  5. VoidCallback? itemClickFunction,
  6. required SelectionConfig themeData,
})

Implementation

BrnSelectionMenuItemWidget(
    {Key? key,
    required this.title,
    this.isHighLight = false,
    this.active = false,
    this.itemClickFunction,
    required this.themeData})
    : super(key: key);