LedgerChip constructor

const LedgerChip({
  1. Key? key,
  2. bool isSelected = false,
  3. required String label,
  4. VoidCallback? onRemove,
  5. VoidCallback? onTap,
  6. bool expand = false,
  7. Color? bgColor,
  8. Color? selectedColor,
  9. Color? baseColor,
  10. Color? labelColor,
  11. Color? iconColor,
  12. BorderRadius? borderRadius,
  13. TextStyle? labelStyle,
  14. SizedBox? spacing,
})

Implementation

const LedgerChip({
  super.key,
  this.isSelected = false,
  required this.label,
  this.onRemove,
  this.onTap,
  this.expand = false,
  this.bgColor,
  this.selectedColor,
  this.baseColor,
  this.labelColor,
  this.iconColor,
  this.borderRadius,
  this.labelStyle,
  this.spacing,
});