MiniResult constructor
const
MiniResult({
- Key? key,
- required MiniResultStatus status,
- required String title,
- String? description,
- Widget? icon,
- String? primaryActionLabel,
- VoidCallback? onPrimaryAction,
- String? secondaryActionLabel,
- VoidCallback? onSecondaryAction,
Implementation
const MiniResult({
super.key,
required this.status,
required this.title,
this.description,
this.icon,
this.primaryActionLabel,
this.onPrimaryAction,
this.secondaryActionLabel,
this.onSecondaryAction,
});