MinCard constructor
const
MinCard({
- Key? key,
- required Widget child,
- Color? backgroundColor,
- Color? borderColor,
- BorderRadiusGeometry? borderRadius,
- List<
BoxShadow> ? shadows, - EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- double? width,
- double? height,
- BoxConstraints? constraints,
Implementation
const MinCard({
super.key,
required this.child,
this.backgroundColor,
this.borderColor,
this.borderRadius,
this.shadows,
this.padding,
this.margin,
this.width,
this.height,
this.constraints,
});