ChipRF constructor

ChipRF({
  1. required Widget label,
  2. Widget? avatar,
  3. Future<ShapesInfoRF> onTap()?,
  4. ChipTypeRF? chipTypeRF,
  5. Color backgroundColor = Colors.white,
  6. Color? selectedColor,
})

Implementation

ChipRF({
  required this.label,
  this.avatar,
  this.onTap,
  this.chipTypeRF,
  this.backgroundColor = Colors.white,
  this.selectedColor,
});