PueFooter constructor

PueFooter({
  1. Widget? top,
  2. required Widget child,
  3. Widget? bottom,
  4. EdgeInsetsGeometry padding = const EdgeInsets.all(0),
  5. bool floating = false,
  6. double? gutters,
})

Implementation

PueFooter({
  this.top,
  required this.child,
  this.bottom,
  this.padding = const EdgeInsets.all(0),
  this.floating = false,
  this.gutters,
});