OverflowBox constructor

OverflowBox({
  1. double? minWidth,
  2. double? maxWidth,
  3. double? minHeight,
  4. double? maxHeight,
  5. Alignment alignment = Alignment.center,
  6. Widget? child,
  7. Key? key,
})

Implementation

OverflowBox({
  this.minWidth,
  this.maxWidth,
  this.minHeight,
  this.maxHeight,
  this.alignment = Alignment.center,
  super.child,
  super.key,
});