BsRow constructor
BsRow({})
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.');