BoxWrapper constructor
- {Key? key,
- required Widget child,
- EdgeInsets? padding,
- Color? color}
Implementation
const BoxWrapper({
Key? key,
required this.child,
this.padding,
this.color,
}) : super(key: key);
const BoxWrapper({
Key? key,
required this.child,
this.padding,
this.color,
}) : super(key: key);