SelectAllConfig constructor

const SelectAllConfig({
  1. required String selectAllLabel,
  2. required String unselectAllLabel,
})

Settings that allow enabling the option to select all items or unselect them. The selectAllLabel and unselectAllLabel parameters are required.

Implementation

const SelectAllConfig({
  required this.selectAllLabel,
  required this.unselectAllLabel,
});