CustomSelectCard constructor

const CustomSelectCard({
  1. required int index,
  2. required int itemCount,
  3. required Widget child,
  4. required bool checkboxValue,
  5. required ValueChanged<bool?>? onCheckboxChanged,
  6. Color? color,
  7. ShapeBorder? shape,
  8. Key? key,
})

SelectCard 选择卡片组件

Implementation

const CustomSelectCard({
  required this.index,
  required this.itemCount,
  required this.child,
  required this.checkboxValue,
  required this.onCheckboxChanged,
  this.color,
  this.shape,
  super.key,
});