SubZeroDialogActions constructor

const SubZeroDialogActions({
  1. required String primaryLabel,
  2. VoidCallback? onPrimary,
  3. String? secondaryLabel,
  4. VoidCallback? onSecondary,
  5. bool primaryLoading = false,
  6. IconData? primaryTrailingIcon,
})

Implementation

const SubZeroDialogActions({
  required this.primaryLabel,
  this.onPrimary,
  this.secondaryLabel,
  this.onSecondary,
  this.primaryLoading = false,
  this.primaryTrailingIcon,
});