CheckboxWidgetModel<T> constructor

CheckboxWidgetModel<T>({
  1. required bool isDefaultIsChecked,
  2. required bool isEditable,
  3. required T value,
  4. required String title,
  5. String? description,
  6. required dynamic onTap(
    1. T
    ),
  7. Widget? leading,
  8. Widget? trailing,
})

Implementation

CheckboxWidgetModel({
  required this.isDefaultIsChecked,
  required this.isEditable,
  required this.value,
  required this.title,
  this.description,
  required this.onTap,
  this.leading,
  this.trailing,
});