FleetAlign constructor

const FleetAlign({
  1. Key? key,
  2. AlignmentGeometry alignment = Alignment.center,
  3. double? widthFactor,
  4. double? heightFactor,
  5. Widget? child,
})

Corresponds constructor to Align.

Implementation

const FleetAlign({
  super.key,
  super.alignment,
  super.widthFactor,
  super.heightFactor,
  super.child,
});