BaseLayout constructor

BaseLayout({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? backgroundColor,
  5. VoidCallback? onClick,
  6. LinearGradient? linearGradient,
  7. List<BoxShadow>? boxShadow,
  8. double? strokeWidth,
  9. Color? strokeColor,
  10. double? topLeftRadius,
  11. double? topRightRadius,
  12. double? bottomLeftRadius,
  13. double? bottomRightRadius,
  14. double? radius,
  15. BoxConstraints? constraints,
  16. Widget? child,
})

Implementation

BaseLayout({
  super.key,
  this.width,
  this.height,
  this.backgroundColor,
  this.onClick,
  this.linearGradient,
  this.boxShadow,
  this.strokeWidth,
  this.strokeColor,
  this.topLeftRadius,
  this.topRightRadius,
  this.bottomLeftRadius,
  this.bottomRightRadius,
  this.radius,
  this.constraints,
  this.child,
});