noItemsFoundBuilder property

NoItemsFoundBuilder? noItemsFoundBuilder
final

Called when no items are found

It is expected to return a widget that gives the user the idea that no items exist in the list For example:

(BuildContext context) {
  return Text('No Items Found!');
}

Implementation

final NoItemsFoundBuilder? noItemsFoundBuilder;