ListItem constructor

ListItem({
  1. BuildContext? context,
  2. required Widget child,
  3. required Widget prevChild,
  4. required int listIndex,
  5. required int index,
  6. Size? actualSize,
  7. double? height,
  8. bool? containsPlaceholder,
  9. VoidCallback? setState,
  10. bool? addedBySystem,
  11. bool? bottomPlaceholder = false,
  12. Color? backgroundColor,
  13. double? width,
  14. double? x,
  15. double? y,
  16. bool? isNew = false,
})

Implementation

ListItem({
  this.context,
  required this.child,
  required this.prevChild,
  required this.listIndex,
  required this.index,
  this.actualSize,
  this.height,
  this.containsPlaceholder,
  this.setState,
  this.addedBySystem,
  this.bottomPlaceholder = false,
  this.backgroundColor,
  this.width,
  this.x,
  this.y,
  this.isNew = false,
});