AnimatedInputChip constructor Null safety

const AnimatedInputChip(
  1. {dynamic key,
  2. dynamic backgroundColor,
  3. required dynamic visible,
  4. required dynamic label,
  5. dynamic onDeleted,
  6. dynamic onAnimationEnd}
)

Implementation

const AnimatedInputChip({
  Key? key,
  this.backgroundColor,
  required this.visible,
  required this.label,
  this.onDeleted,
  this.onAnimationEnd,
}) : super(key: key);