BsContainer constructor

const BsContainer({
  1. Key? key,
  2. BsFluid fluid = BsFluid.sm,
  3. BsVisibility visibility = BsVisibility.block,
  4. AlignmentGeometry? alignment,
  5. BoxConstraints? constraints,
  6. double? height,
  7. EdgeInsetsGeometry? padding,
  8. EdgeInsetsGeometry? margin,
  9. Color? color,
  10. Decoration? decoration,
  11. Decoration? foregroundDecoration,
  12. Matrix4? transform,
  13. AlignmentGeometry? transformAligment,
  14. Clip clipBehavior = Clip.none,
  15. Widget? child,
})

Implementation

const BsContainer({
  Key? key,
  this.fluid = BsFluid.sm,
  this.visibility = BsVisibility.block,
  this.alignment,
  this.constraints,
  this.height,
  this.padding,
  this.margin,
  this.color,
  this.decoration,
  this.foregroundDecoration,
  this.transform,
  this.transformAligment,
  this.clipBehavior = Clip.none,
  this.child,
}) : super(key: key);