TagArguments constructor

TagArguments({
  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. EdgeInsetsGeometry margin = const EdgeInsets.all(0),
})

Implementation

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