SelectionBehavior constructor
SelectionBehavior({})
Creating an argument constructor of SelectionBehavior class.
Implementation
SelectionBehavior(
{bool? enable,
this.selectedColor,
this.selectedBorderColor,
this.selectedBorderWidth,
this.unselectedColor,
this.unselectedBorderColor,
this.unselectedBorderWidth,
double? selectedOpacity,
double? unselectedOpacity,
this.selectionController,
bool? toggleSelection})
: enable = enable ?? false,
selectedOpacity = selectedOpacity ?? 1.0,
unselectedOpacity = unselectedOpacity ?? 0.5,
toggleSelection = toggleSelection ?? true;