ArnaList constructor

const ArnaList({
  1. Key? key,
  2. String? title,
  3. required List<Widget> children,
  4. Axis direction = Axis.vertical,
  5. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  6. MainAxisSize mainAxisSize = MainAxisSize.max,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  8. TextDirection? textDirection,
  9. VerticalDirection verticalDirection = VerticalDirection.down,
  10. TextBaseline? textBaseline,
  11. bool showDividers = false,
  12. bool showBackground = false,
})

Creates an array of children.

Implementation

const ArnaList({
  super.key,
  this.title,
  required this.children,
  this.direction = Axis.vertical,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.mainAxisSize = MainAxisSize.max,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
  this.textBaseline,
  this.showDividers = false,
  this.showBackground = false,
});