WidgetColumnPluginManager constructor

WidgetColumnPluginManager({
  1. List<AttachableWidgetPlugin<Widget>> plugins = const [],
  2. Key? key,
  3. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
  6. double spacing = 0.0,
  7. TextDirection? textDirection,
  8. VerticalDirection verticalDirection = VerticalDirection.down,
})

Implementation

WidgetColumnPluginManager({
  super.plugins,
  this.key,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.mainAxisSize = MainAxisSize.max,
  this.spacing = 0.0,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
});