BodyE constructor

const BodyE({
  1. Key? key,
  2. Widget? topHint,
  3. Widget? operate,
  4. required List<Widget>? children,
  5. Widget? child,
  6. double padding = 32,
  7. int left = 0,
  8. int top = 0,
  9. int right = 0,
  10. double space = 0,
  11. bool bottom = true,
  12. bool slide = false,
  13. Color? backgroundColor,
  14. Decoration? decoration,
  15. EasyRefreshController? controller,
  16. OnRefreshCallback? refresh,
  17. OnLoadCallback? load,
  18. bool fullLine = true,
  19. bool noList = false,
})

Implementation

const BodyE({
  Key? key,
  this.topHint,
  this.operate,
  required this.children,
  this.child,
  this.padding = 32,
  this.left = 0,
  this.top = 0,
  this.right = 0,
  this.space = 0,
  this.bottom = true,
  this.slide = false,
  this.backgroundColor,
  this.decoration,
  this.controller,
  this.refresh,
  this.load,
  this.fullLine = true,
  this.noList = false,
}) : super(key: key);