BaseTagListView constructor

const BaseTagListView({
  1. Key? key,
  2. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(horizontal: 3),
  3. double spacing = 10.0,
  4. double runSpacing = 5.0,
  5. Color? color,
  6. BorderRadiusGeometry? borderRadius,
  7. double borderWidth = 0.5,
  8. required List<Widget> children,
})

Implementation

const BaseTagListView(
    {Key? key,
    this.contentPadding = const EdgeInsets.symmetric(horizontal: 3),
    this.spacing = 10.0,
    this.runSpacing = 5.0,
    this.color,
    this.borderRadius,
    this.borderWidth = 0.5,
    required this.children})
    : super(key: key);