FleetFittedBox constructor

const FleetFittedBox({
  1. Key? key,
  2. AlignmentGeometry alignment = Alignment.center,
  3. BoxFit fit = BoxFit.contain,
  4. Clip clipBehavior = Clip.none,
  5. Widget? child,
})

Corresponding constructor to FittedBox.

Implementation

const FleetFittedBox({
  super.key,
  super.alignment,
  super.fit,
  super.clipBehavior,
  super.child,
});