AntdCheckList constructor

const AntdCheckList({
  1. Key? key,
  2. AntdCheckListStyle? style,
  3. AntdStyleBuilder<AntdCheckListStyle, AntdCheckList>? styleBuilder,
  4. AntdCheckListController? controller,
  5. required List<AntdCheckItem> items,
  6. AntdScrollItemBuilder<AntdCheckItem, AntdCheckListController>? itemBuilder,
  7. double? edgeThreshold,
  8. AntdOnScrollEdge? onEdgeReached,
  9. bool virtual = false,
  10. AntdScrollItemFit fit = AntdScrollItemFit.child,
  11. bool? shrinkWrap = true,
  12. bool? disable,
  13. AntdCheckListChange? onChange,
  14. Set<String>? values,
  15. AntdHapticFeedback? hapticFeedback = AntdHapticFeedback.light,
})

Implementation

const AntdCheckList(
    {super.key,
    super.style,
    super.styleBuilder,
    super.controller,
    required super.items,
    super.itemBuilder,
    super.edgeThreshold,
    super.onEdgeReached,
    super.virtual = false,
    super.fit = AntdScrollItemFit.child,
    super.shrinkWrap = true,
    this.disable,
    this.onChange,
    this.values,
    this.hapticFeedback = AntdHapticFeedback.light});