AppChip constructor

const AppChip({
  1. Key? key,
  2. required String? value,
  3. bool state = false,
  4. dynamic onTap()?,
})

Implementation

const AppChip({super.key, required this.value, this.state = false, this.onTap});