PlatformChip constructor

const PlatformChip({
  1. Key? key,
  2. required Widget label,
  3. Widget? deleteIcon,
  4. void onDeleted()?,
})

Implementation

const PlatformChip(
    {Key? key, required this.label, this.deleteIcon, this.onDeleted})
    : super(key: key);