SafaehMetaChip constructor

const SafaehMetaChip({
  1. Key? key,
  2. required String label,
  3. IconData? icon,
  4. Color? background,
  5. Color? foreground,
  6. Color? border,
  7. bool compact = false,
})

Implementation

const SafaehMetaChip({
  super.key,
  required this.label,
  this.icon,
  this.background,
  this.foreground,
  this.border,
  this.compact = false,
});