S360fSelectableCard constructor

const S360fSelectableCard({
  1. required String name,
  2. Key? key,
  3. String email = '',
  4. bool isCheckboxRequired = false,
  5. bool isChecked = false,
  6. String dropdownValue = '',
  7. bool? isMultiSelect = true,
  8. AvatarType userType = AvatarType.maleAdult,
  9. ValueChanged<bool?>? onCheckChanged,
  10. S360fSelectableCardType cardType = S360fSelectableCardType.normal,
  11. ValueChanged<String?>? onClickCard,
  12. ValueChanged<String?>? onChangeDropDown,
  13. VoidCallback? onEdit,
  14. List? options,
})

Implementation

const S360fSelectableCard({
  required this.name,
  super.key,
  this.email = '',
  this.isCheckboxRequired = false,
  this.isChecked = false,
  this.dropdownValue = '',
  this.isMultiSelect = true,
  this.userType = AvatarType.maleAdult,
  this.onCheckChanged,
  this.cardType = S360fSelectableCardType.normal,
  this.onClickCard,
  this.onChangeDropDown,
  this.onEdit,
  this.options,
});