BTContainer constructor

const BTContainer({
  1. required Widget child,
  2. Key? key,
  3. bool sm = false,
  4. bool md = false,
  5. bool lg = false,
  6. bool xl = false,
  7. bool xxl = false,
  8. bool fluid = false,
  9. EdgeInsetsGeometry? margin,
})

Implementation

const BTContainer({
  required this.child,
  super.key,
  this.sm = false,
  this.md = false,
  this.lg = false,
  this.xl = false,
  this.xxl = false,
  this.fluid = false,
  this.margin,
});