ListUicEmptyView constructor

const ListUicEmptyView({
  1. Key? key,
  2. required ListUicController controller,
  3. required Icon icon,
  4. required String text,
})

Implementation

const ListUicEmptyView({
  Key? key,
  required this.controller,
  required this.icon,
  required this.text,
}) : super(key: key);