FleetLimitedBox constructor

const FleetLimitedBox({
  1. Key? key,
  2. double maxHeight = double.infinity,
  3. double maxWidth = double.infinity,
  4. Widget? child,
})

Corresponding constructor to LimitedBox.

Implementation

const FleetLimitedBox({
  super.key,
  super.maxHeight,
  super.maxWidth,
  super.child,
});