EmptyView constructor
const
EmptyView({})
The default constructor for EmptyView.
It takes description, illustration and action widgets
and a reversed boolean variable. This allows full
flexibility and customisability for building the widget.
Implementation
const EmptyView({
required this.description,
this.illustration,
this.action,
this.reversed = false,
Key? key,
}) : super(key: key);