DecoratedBox constructor
const
DecoratedBox({
- Key? key,
- required Decoration decoration,
- DecorationPosition position = DecorationPosition.background,
- Widget? child,
Creates a widget that paints a Decoration.
By default the decoration paints behind the child.
Implementation
const DecoratedBox(
{super.key,
required this.decoration,
this.position = DecorationPosition.background,
this.child});