Tag constructor

const Tag({
  1. Key? key,
  2. String? title,
  3. IconData? leadingIcon,
  4. Color color = darkBlue,
})

Implementation

const Tag({
  Key? key,
  this.title,
  this.leadingIcon,
  this.color = darkBlue,
}) : super(key: key);