XContainer constructor

const XContainer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. AlignmentGeometry? alignment,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. BoxConstraints? constraints,
  8. bool isCircle = false,
  9. Color? color,
  10. Gradient? gradient,
  11. double? radius,
  12. BorderRadiusGeometry? borderRadius,
  13. BoxBorder? border,
  14. DecorationImage? image,
  15. List<BoxShadow>? boxShadow,
  16. Widget? child,
  17. double? minHeight,
})

Implementation

const XContainer(
    {Key? key,
    this.width,
    this.height,
    this.alignment,
    this.padding,
    this.margin,
    this.constraints,
    this.isCircle = false,
    this.color,
    this.gradient,
    this.radius,
    this.borderRadius,
    this.border,
    this.image,
    this.boxShadow,
    this.child,
    this.minHeight})
    : super(key: key);