FleetOverflowBox constructor

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

Corresponding constructor to OverflowBox.

Implementation

const FleetOverflowBox({
  super.key,
  super.alignment,
  super.minHeight,
  super.maxHeight,
  super.minWidth,
  super.maxWidth,
  super.child,
});