BsCol constructor

const BsCol({
  1. Key? key,
  2. required Widget child,
  3. BsColConfig config = const BsColConfig(),
})

Creates a BsCol widget.

Implementation

const BsCol({
  super.key,
  required this.child,
  this.config = const BsColConfig(),
});