TagText constructor

TagText({
  1. List<TagItem>? tagItems,
  2. int maxTagCount = 1,
  3. double radius = 2,
  4. double padding = 2.4,
  5. double horSpacing = 5.0,
  6. double verSpacing = 5.0,
  7. SpecialTextGestureTapCallback? tapCallback,
  8. EdgeInsetsGeometry margin = const EdgeInsets.all(0),
})

Implementation

TagText(
    {this.tagItems,
    this.maxTagCount = 1,
    this.radius = 2,
    this.padding = 2.4,
    this.horSpacing = 5.0,
    this.verSpacing = 5.0,
    this.tapCallback,
    this.margin = const EdgeInsets.all(0)});