BsRow constructor

BsRow({
  1. Key? key,
  2. required List<BsCol> children,
  3. double gutterX = BsSpacing.s3,
  4. double gutterY = BsSpacing.s3,
})

Creates a BsRow widget with the given children.

Implementation

BsRow({
  super.key,
  required this.children,
  this.gutterX = BsSpacing.s3, // Bootstrap g-* default
  this.gutterY = BsSpacing.s3,
}) : assert(children.isNotEmpty, 'BsRow requires at least one child widget.');