RemoteSessionDetailDialog constructor

const RemoteSessionDetailDialog({
  1. Key? key,
  2. required BackgroundTaskState session,
  3. required VoidCallback onDone,
  4. VoidCallback? onBack,
  5. VoidCallback? onKill,
})

Implementation

const RemoteSessionDetailDialog({
  super.key,
  required this.session,
  required this.onDone,
  this.onBack,
  this.onKill,
});