ArcaneCheckItem.brand constructor

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

Implementation

const ArcaneCheckItem.brand({
  required this.text,
  this.icon = CheckStyle.check,
  this.textColor,
  this.fontSize,
  this.gap,
  super.key,
}) : iconColor = 'var(--accent)';