RowConfig constructor

const RowConfig({
  1. Key? key,
  2. MainAxisSize mainAxisSize = MainAxisSize.max,
  3. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
  4. VerticalDirection verticalDirection = VerticalDirection.down,
  5. TextDirection? textDirection,
  6. TextBaseline? textBaseline,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
})

Implementation

const RowConfig({
  this.key,
  this.mainAxisSize = MainAxisSize.max,
  this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
  this.verticalDirection = VerticalDirection.down,
  this.textDirection,
  this.textBaseline,
  this.crossAxisAlignment = CrossAxisAlignment.center,
});