WidgetWrapPluginManager constructor

WidgetWrapPluginManager({
  1. List<AttachableWidgetPlugin<Widget>> plugins = const [],
  2. Key? key,
  3. AlignmentGeometry alignment = AlignmentDirectional.topStart,
  4. WrapAlignment alignmentWrap = WrapAlignment.start,
  5. Clip clipBehavior = Clip.none,
  6. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
  7. Axis direction = Axis.horizontal,
  8. WrapAlignment runAlignment = WrapAlignment.start,
  9. double runSpacing = 0.0,
  10. double spacing = 0.0,
  11. TextDirection? textDirection,
  12. VerticalDirection verticalDirection = VerticalDirection.down,
})

Implementation

WidgetWrapPluginManager({
  super.plugins,
  this.key,
  this.alignment = AlignmentDirectional.topStart,
  this.alignmentWrap = WrapAlignment.start,
  this.clipBehavior = Clip.none,
  this.crossAxisAlignment = WrapCrossAlignment.start,
  this.direction = Axis.horizontal,
  this.runAlignment = WrapAlignment.start,
  this.runSpacing = 0.0,
  this.spacing = 0.0,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
});