MiniResult constructor

const MiniResult({
  1. Key? key,
  2. required MiniResultStatus status,
  3. required String title,
  4. String? description,
  5. Widget? icon,
  6. String? primaryActionLabel,
  7. VoidCallback? onPrimaryAction,
  8. String? secondaryActionLabel,
  9. 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,
});