SeoWrap constructor

const SeoWrap({
  1. Key? key,
  2. Axis direction = Axis.horizontal,
  3. WrapAlignment alignment = WrapAlignment.start,
  4. WrapAlignment runAlignment = WrapAlignment.start,
  5. double spacing = 0.0,
  6. double runSpacing = 0.0,
  7. VerticalDirection verticalDirection = VerticalDirection.down,
  8. TextDirection? textDirection,
  9. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
  10. Clip clipBehavior = Clip.none,
  11. required List<Widget> children,
})

Creates a SeoWrap widget that mirrors the functionality of Wrap, and also injects an HTML layout for SEO on Web.

Implementation

const SeoWrap({
  super.key,
  this.direction = Axis.horizontal,
  this.alignment = WrapAlignment.start,
  this.runAlignment = WrapAlignment.start,
  this.spacing = 0.0,
  this.runSpacing = 0.0,
  this.verticalDirection = VerticalDirection.down,
  this.textDirection,
  this.crossAxisAlignment = WrapCrossAlignment.start,
  this.clipBehavior = Clip.none,
  required this.children,
});