StacWrap constructor

const StacWrap({
  1. StacAxis? direction,
  2. StacWrapAlignment? alignment,
  3. double? spacing,
  4. StacWrapAlignment? runAlignment,
  5. double? runSpacing,
  6. StacWrapCrossAlignment? crossAxisAlignment,
  7. StacTextDirection? textDirection,
  8. StacVerticalDirection? verticalDirection,
  9. StacClip? clipBehavior,
  10. List<StacWidget>? children,
})

Creates a StacWrap with the given properties.

Implementation

const StacWrap({
  this.direction,
  this.alignment,
  this.spacing,
  this.runAlignment,
  this.runSpacing,
  this.crossAxisAlignment,
  this.textDirection,
  this.verticalDirection,
  this.clipBehavior,
  this.children,
});