DocumentListView constructor
DocumentListView({
- DocumentItemConfiguration<
DocumentItem> ? listItem, - QueryConfiguration? query,
- LayoutConfiguration<
ContentItem> ? layout,
Implementation
DocumentListView({
this.listItem,
this.query,
super.layout,
}) : super(schemaType: schemaName) {
assert(listItem != null, 'A list item configuration must be provided');
assert(query != null, 'A query configuration must be provided');
}