CenterBodyProps constructor

const CenterBodyProps({
  1. required Widget child,
  2. double? maxWidth,
  3. String? padding,
  4. bool fillHeight = true,
})

Implementation

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