FleetSizedBox constructor

const FleetSizedBox({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Widget? child,
})

Corresponding constructor to SizedBox.

Implementation

const FleetSizedBox({
  super.key,
  super.height,
  super.width,
  super.child,
});