ListItem constructor
ListItem({
- BuildContext? context,
- required Widget child,
- required Widget prevChild,
- required int listIndex,
- required int index,
- Size? actualSize,
- double? height,
- bool? containsPlaceholder,
- VoidCallback? setState,
- bool? addedBySystem,
- bool? bottomPlaceholder = false,
- Color? backgroundColor,
- double? width,
- double? x,
- double? y,
- 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,
});