ShellDetailDialog constructor

const ShellDetailDialog({
  1. Key? key,
  2. required BackgroundTaskState shell,
  3. required VoidCallback onDone,
  4. VoidCallback? onKillShell,
  5. VoidCallback? onBack,
})

Implementation

const ShellDetailDialog({
  super.key,
  required this.shell,
  required this.onDone,
  this.onKillShell,
  this.onBack,
});