BoxCard constructor
const
BoxCard({
- Key? key,
- double? height,
- double? width,
- bool hasShadow = true,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- AlignmentGeometry? alignment,
- Decoration? decoration,
- required Widget child,
Implementation
const BoxCard({
Key? key,
this.height,
this.width,
this.hasShadow = true,
this.padding,
this.margin,
this.alignment,
this.decoration,
required this.child,
}) : super(key: key);