ParseLiveListWidget<T extends ParseObject> constructor
const
ParseLiveListWidget<T extends ParseObject>(- {Key? key,
- required QueryBuilder<T> query,
- Widget? listLoadingElement,
- Widget? queryEmptyElement,
- Duration duration = const Duration(milliseconds: 300),
- ScrollPhysics? scrollPhysics,
- ScrollController? scrollController,
- Axis scrollDirection = Axis.vertical,
- EdgeInsetsGeometry? padding,
- bool? primary,
- bool reverse = false,
- ChildBuilder<T>? childBuilder,
- bool shrinkWrap = false,
- ChildBuilder<T>? removedItemBuilder,
- bool? listenOnAllSubItems,
- List<String>? listeningIncludes,
- bool lazyLoading = true,
- List<String>? preloadedColumns}
)
Implementation
const ParseLiveListWidget({
Key? key,
required this.query,
this.listLoadingElement,
this.queryEmptyElement,
this.duration = const Duration(milliseconds: 300),
this.scrollPhysics,
this.scrollController,
this.scrollDirection = Axis.vertical,
this.padding,
this.primary,
this.reverse = false,
this.childBuilder,
this.shrinkWrap = false,
this.removedItemBuilder,
this.listenOnAllSubItems,
this.listeningIncludes,
this.lazyLoading = true,
this.preloadedColumns,
}) : super(key: key);