AppEmptyState constructor

const AppEmptyState({
  1. Key? key,
  2. required String message,
  3. IconData icon = Icons.inbox_outlined,
  4. Widget? action,
})

Creates an empty-state view with optional icon and action.

Implementation

const AppEmptyState({
  super.key,
  required this.message,
  this.icon = Icons.inbox_outlined,
  this.action,
});