DocumentListView constructor

DocumentListView({
  1. DocumentItemConfiguration<DocumentItem>? listItem,
  2. QueryConfiguration? query,
  3. 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');
}