NeomageEmptyState constructor

const NeomageEmptyState({
  1. Key? key,
  2. required IconData icon,
  3. required String title,
  4. String? subtitle,
  5. String? actionLabel,
  6. VoidCallback? onAction,
})

Implementation

const NeomageEmptyState({
  super.key,
  required this.icon,
  required this.title,
  this.subtitle,
  this.actionLabel,
  this.onAction,
});