OverflowDecoratedBox constructor

const OverflowDecoratedBox({
  1. Key? key,
  2. required Decoration decoration,
  3. required EdgeInsets expands,
  4. Widget? child,
})

Creates an OverflowDecoratedBox.

Implementation

const OverflowDecoratedBox({
  super.key,
  required this.decoration,
  required this.expands,
  super.child,
});