Box constructor
const
Box({
- Key? key,
- required Widget child,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- Color? borderColor,
- Color? backgroundColor,
Implementation
const Box({
super.key,
required this.child,
this.margin,
this.padding,
this.borderColor,
this.backgroundColor,
});