InProcessTeammateDetailDialog constructor

const InProcessTeammateDetailDialog({
  1. Key? key,
  2. required BackgroundTaskState teammate,
  3. required VoidCallback onDone,
  4. VoidCallback? onKill,
  5. VoidCallback? onBack,
  6. VoidCallback? onForeground,
})

Implementation

const InProcessTeammateDetailDialog({
  super.key,
  required this.teammate,
  required this.onDone,
  this.onKill,
  this.onBack,
  this.onForeground,
});