FunctionContainer constructor

FunctionContainer({
  1. Key? key,
  2. List<int>? defaultCheckeds,
  3. int defaultCheck = 0,
  4. required Widget child,
  5. int mutualExclusionIndex = -1,
  6. dynamic singleCheckedChange(
    1. int checkedId
    )?,
  7. bool allowMultipleChoice = false,
  8. dynamic multipleCheckedChange(
    1. List checkeds
    )?,
  9. bool enableFirstdefaultCheck = false,
  10. bool enable = true,
  11. dynamic enableCallBack()?,
})

Implementation

FunctionContainer({
  Key? key,
  this.defaultCheckeds,
  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);