BsCol constructor

const BsCol({
  1. Key? key,
  2. BsVisibility visibility = BsVisibility.block,
  3. ColScreen sizes = const ColScreen(),
  4. ColOrder order = const ColOrder(),
  5. ColScreen offset = const ColScreen(),
  6. Color? color,
  7. double? height,
  8. BoxConstraints? constraints,
  9. EdgeInsetsGeometry? padding,
  10. EdgeInsets? margin,
  11. AlignmentGeometry? alignment,
  12. Decoration? decoration,
  13. Decoration? foregroundDecoration,
  14. Matrix4? transform,
  15. AlignmentGeometry? transformAlignment,
  16. Clip clipBehavior = Clip.none,
  17. Widget? child,
})

Implementation

const BsCol({
  Key? key,
  this.visibility = BsVisibility.block,
  this.sizes = const ColScreen(),
  this.order = const ColOrder(),
  this.offset = const ColScreen(),
  this.color,
  this.height,
  this.constraints,
  this.padding,
  this.margin,
  this.alignment,
  this.decoration,
  this.foregroundDecoration,
  this.transform,
  this.transformAlignment,
  this.clipBehavior = Clip.none,
  this.child,
}) : super(key: key);