FxEmptyState constructor

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

Implementation

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