BsRow constructor

const BsRow({
  1. Key? key,
  2. required List<BsCol> children,
  3. double gutterX = BsSpacing.s3,
  4. double gutterY = BsSpacing.s3,
  5. BsRowJustify justify = BsRowJustify.start,
  6. BsRowAlignItems alignItems = BsRowAlignItems.stretch,
})

Creates a BsRow widget with the given children.

Implementation

const BsRow({
  super.key,
  required this.children,
  this.gutterX = BsSpacing.s3,
  this.gutterY = BsSpacing.s3,
  this.justify = BsRowJustify.start,
  this.alignItems = BsRowAlignItems.stretch,
});