Tag constructor

const Tag({
  1. Key? key,
  2. required String label,
  3. TagStatus state = TagStatus.normal,
})

Creates Tag Widget

Implementation

const Tag({
  Key? key,
  required this.label,
  this.state = TagStatus.normal,
}) : super(key: key);