DecoratedBox constructor

const DecoratedBox(
  1. {Key? key,
  2. required Decoration decoration,
  3. DecorationPosition position = DecorationPosition.background,
  4. 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,
  super.child,
});