FunctionContainer constructor
const
FunctionContainer({
- Key? key,
- List<
int> ? defaultChecks = const [], - int defaultCheck = 0,
- required Widget child,
- int mutualExclusionIndex = -1,
- dynamic singleCheckedChange(
- int checkedId
- bool allowMultipleChoice = false,
- dynamic multipleCheckedChange(
- List checkeds
- bool enableFirstDefaultCheck = false,
- bool enable = true,
- dynamic enableCallBack()?,
Implementation
const FunctionContainer({
Key? key,
this.defaultChecks = const[],
this.defaultCheck = 0,
required this.child,
this.mutualExclusionIndex = -1,
this.singleCheckedChange,
this.allowMultipleChoice = false,
this.multipleCheckedChange,
this.enableFirstDefaultCheck = false,
this.enable = true,
this.enableCallBack,
}) : super(key: key);