ArcaneCheckItem constructor

const ArcaneCheckItem({
  1. required String text,
  2. CheckStyle icon = CheckStyle.check,
  3. String? iconColor,
  4. String? textColor,
  5. String? fontSize,
  6. String? gap,
  7. Key? key,
})

Implementation

const ArcaneCheckItem({
  required this.text,
  this.icon = CheckStyle.check,
  this.iconColor,
  this.textColor,
  this.fontSize,
  this.gap,
  super.key,
});