featured static method
Creates a featured chip.
Implementation
static GradientChip featured({
Key? key,
required String label,
IconData? icon,
}) {
return GradientChip(
key: key,
label: label,
icon: icon,
colors: GradientChipPresets.featured,
);
}