GroupListView(- {Widget? child,
- bool isReorderEnable = true,
- bool isDeleteEnable = true,
- bool isUpdateEnable = true,
- bool isSelectEnable = false,
- List<CowGroup> disabledGroups = const [],
- required List<CowGroup> groups,
- dynamic onReorder(
- int oldIndex,
- int newIndex
)?,
- dynamic onSelect(
- CowGroup? group
)?}
)
Implementation
GroupListView({
this.child,
this.isReorderEnable = true,
this.isDeleteEnable = true,
this.isUpdateEnable = true,
this.isSelectEnable = false,
this.disabledGroups = const [],
required this.groups,
this.onReorder,
this.onSelect,
});