HMChoiceChips constructor

const HMChoiceChips({
  1. bool disabled = false,
  2. bool hidden = false,
  3. HMRadius? radius,
  4. Color? selectedColor,
  5. bool? isFilled,
  6. Widget? avatar,
  7. required Widget label,
  8. BorderSide? borderSide,
  9. Color? textColor,
  10. Color? backgroundColor,
  11. required void onSelected(
    1. bool value
    ),
  12. Key? key,
})

Implementation

const HMChoiceChips(
    {this.disabled = false,
    this.hidden = false,
    this.radius,
    this.selectedColor,
    this.isFilled,
    this.avatar,
    required this.label,
    this.borderSide,
    this.textColor,
    this.backgroundColor,
    required this.onSelected,
    super.key});