ModulaColumn constructor

const ModulaColumn({
  1. required List<Widget> children,
  2. Key? key,
  3. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
  6. double spacing = 8.0,
  7. TextDirection? textDirection,
  8. VerticalDirection verticalDirection = VerticalDirection.down,
})

Implementation

const ModulaColumn({
  required this.children,
  super.key,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisSize = MainAxisSize.max,
  this.spacing = 8.0,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
});