BaseLayout constructor
BaseLayout({
- Key? key,
- double? width,
- double? height,
- Color? backgroundColor,
- VoidCallback? onClick,
- LinearGradient? linearGradient,
- List<
BoxShadow> ? boxShadow, - double? strokeWidth,
- Color? strokeColor,
- double? topLeftRadius,
- double? topRightRadius,
- double? bottomLeftRadius,
- double? bottomRightRadius,
- double? radius,
- BoxConstraints? constraints,
- 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,
});