ListItem constructor

ListItem({
  1. BuildContext? context,
  2. required Widget child,
  3. required int listIndex,
  4. required int index,
  5. double? height,
  6. VoidCallback? setState,
  7. Color? backgroundColor,
  8. double? width,
  9. double? x,
  10. double? y,
  11. bool? isNew = false,
})

Implementation

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