DbLensChip constructor

const DbLensChip({
  1. Key? key,
  2. IconData? icon,
  3. required String label,
  4. required Color foreground,
  5. required Color background,
  6. Color? borderColor,
  7. double borderRadius = 10,
  8. VoidCallback? onTap,
  9. bool expandWidth = false,
})

Implementation

const DbLensChip({
  super.key,
  this.icon,
  required this.label,
  required this.foreground,
  required this.background,
  this.borderColor,
  this.borderRadius = 10,
  this.onTap,
  this.expandWidth = false,
});