FunctionContainer constructor

const FunctionContainer({
  1. Key? key,
  2. List<int>? defaultChecks = const [],
  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

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);