BsCol constructor

const BsCol({
  1. Key? key,
  2. required Widget child,
  3. BsColConfig config = const BsColConfig(),
  4. BsOffsetConfig offset = const BsOffsetConfig(),
  5. BsColAlignSelf alignSelf = BsColAlignSelf.auto,
})

Creates a BsCol widget.

Implementation

const BsCol({
  super.key,
  required this.child,
  this.config = const BsColConfig(),
  this.offset = const BsOffsetConfig(),
  this.alignSelf = BsColAlignSelf.auto,
});