MiuixCheckboxColors constructor

const MiuixCheckboxColors({
  1. required Color checkedForegroundColor,
  2. required Color uncheckedForegroundColor,
  3. required Color disabledCheckedForegroundColor,
  4. required Color disabledUncheckedForegroundColor,
  5. required Color checkedBackgroundColor,
  6. required Color uncheckedBackgroundColor,
  7. required Color disabledCheckedBackgroundColor,
  8. required Color disabledUncheckedBackgroundColor,
})

Implementation

const MiuixCheckboxColors({
  required this.checkedForegroundColor,
  required this.uncheckedForegroundColor,
  required this.disabledCheckedForegroundColor,
  required this.disabledUncheckedForegroundColor,
  required this.checkedBackgroundColor,
  required this.uncheckedBackgroundColor,
  required this.disabledCheckedBackgroundColor,
  required this.disabledUncheckedBackgroundColor,
});