ArnaBadge constructor

const ArnaBadge({
  1. Key? key,
  2. required String label,
  3. Color? accentColor,
})

Creates a badge in the Arna style.

Implementation

const ArnaBadge({
  super.key,
  required this.label,
  this.accentColor,
});