UpdateCleanupReport constructor

const UpdateCleanupReport({
  1. required String stagingPath,
  2. required String? descriptorVersion,
  3. required bool cleanupAttempted,
  4. bool? cleanupSucceeded,
  5. bool? backupRestoredByNativeHelper,
  6. String? errorText,
})

Creates an install cleanup report.

Implementation

const UpdateCleanupReport({
  required this.stagingPath,
  required this.descriptorVersion,
  required this.cleanupAttempted,
  this.cleanupSucceeded,
  this.backupRestoredByNativeHelper,
  this.errorText,
});