BsContainer constructor

const BsContainer({
  1. Key? key,
  2. required Widget child,
  3. BsContainerType type = BsContainerType.fixed,
  4. EdgeInsets? padding,
})

Creates a BsContainer widget.

Implementation

const BsContainer({
  super.key,
  required this.child,
  this.type = BsContainerType.fixed,
  this.padding,
});