CenterBody constructor

const CenterBody({
  1. required Component child,
  2. double? maxWidth,
  3. EdgeInsets? padding,
  4. bool fillHeight = true,
  5. Key? key,
})

Implementation

const CenterBody({
  required this.child,
  this.maxWidth,
  this.padding,
  this.fillHeight = true,
  super.key,
});