NiceEmptyState constructor
const
NiceEmptyState({
- Key? key,
- required String title,
- String? description,
- IconData? icon,
- Widget? illustration,
- NiceEmptyStateType type = NiceEmptyStateType.noData,
- Widget? action,
- Color? iconColor,
- double iconSize = 64,
- EdgeInsets? padding,
Implementation
const NiceEmptyState({
super.key,
required this.title,
this.description,
this.icon,
this.illustration,
this.type = NiceEmptyStateType.noData,
this.action,
this.iconColor,
this.iconSize = 64,
this.padding,
});