BgContainer constructor

const BgContainer(
  1. double width, {
  2. EdgeInsetsGeometry? margin,
  3. EdgeInsetsGeometry? padding,
  4. Widget? child,
  5. AlignmentGeometry? alignment,
  6. double? height,
  7. Color? backgroundColor,
  8. Key? key,
})

Implementation

const BgContainer(this.width,
    {this.margin,
    this.padding,
    this.child,
    this.alignment,
    this.height,
    this.backgroundColor,
    Key? key})
    : super(key: key);