PueBody constructor

PueBody(
  1. {required Widget child,
  2. bool listView = false,
  3. bool fadeTop = false,
  4. bool fadeBottom = false,
  5. double? gutters}
)

Implementation

PueBody({
  required this.child,
  this.listView = false,
  this.fadeTop = false,
  this.fadeBottom = false,
  this.gutters,
});