HubbleBox constructor

const HubbleBox({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Color? backgroundColor,
  5. Widget? backgroundImage,
  6. EdgeInsets? padding,
  7. EdgeInsets? margin,
  8. BorderRadius? borderRadius,
  9. Border? border,
  10. Widget? child,
  11. List<BoxShadow>? boxShadow,
  12. Gradient? gradient,
  13. Clip clip = Clip.none,
  14. AlignmentGeometry? alignment,
})

Implementation

const HubbleBox({
  super.key,
  this.height,
  this.width,
  this.backgroundColor,
  this.backgroundImage,
  this.padding,
  this.margin,
  this.borderRadius,
  this.border,
  this.child,
  this.boxShadow,
  this.gradient,
  this.clip = Clip.none,
  this.alignment,
});