ChipIconLabelData constructor

ChipIconLabelData({
  1. Key? key,
  2. String label = 'Label',
  3. IconData icon = Icons.abc,
  4. String? data,
})

Implementation

ChipIconLabelData(
    {Key? key, this.label = 'Label', this.icon = Icons.abc, this.data})
    : super(key: key);