AtomChip constructor

const AtomChip({
  1. Key? key,
  2. required String label,
  3. Color? backgroundColor = Colors.white,
  4. Color? textColor,
  5. EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 6),
  6. double borderRadius = 16,
})

Implementation

const AtomChip({
  super.key,
  required this.label,
  this.backgroundColor = Colors.white,
  this.textColor,
  this.padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 6),
  this.borderRadius = 16,
});