FleetCenter constructor

const FleetCenter({
  1. Key? key,
  2. double? widthFactor,
  3. double? heightFactor,
  4. Widget? child,
})

Corresponds constructor to Center.

Implementation

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