OverflowBox constructor

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

OverflowBox API.

Implementation

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