toggleAllItemsSelection method
Implementation
void toggleAllItemsSelection(BuildContext context) {
var blocc = bloc(context);
blocc.add(
areAllSelected(context)
? BlocxCollectionEventDeselectMultipleItems(items: blocc.list)
: BlocxCollectionEventSelectMultipleItems(items: blocc.list),
);
}