EmptyList constructor

const EmptyList({
  1. Key? key,
  2. required InfiniteGroupedList widget,
  3. required bool hasError,
  4. required dynamic error,
})

Implementation

const EmptyList({
  super.key,
  required this.widget,
  required this.hasError,
  required this.error,
});