AsyncAgentDetailDialog constructor

const AsyncAgentDetailDialog({
  1. Key? key,
  2. required BackgroundTaskState agent,
  3. required VoidCallback onDone,
  4. VoidCallback? onKillAgent,
  5. VoidCallback? onBack,
})

Implementation

const AsyncAgentDetailDialog({
  super.key,
  required this.agent,
  required this.onDone,
  this.onKillAgent,
  this.onBack,
});