TagItem constructor

TagItem({
  1. String? text,
  2. Color fontColor = Colors.white,
  3. double fontSize = 12.0,
  4. Color backgroundColor = Colors.white,
  5. Color? borderColor,
  6. double? width,
  7. double? height,
})

Implementation

TagItem(
    {this.text,
    this.fontColor = Colors.white,
    this.fontSize = 12.0,
    this.backgroundColor = Colors.white,
    this.borderColor,
    this.width,
    this.height});