RestoreStatus constructor

RestoreStatus({
  1. double? currentRestoreRateInMegaBytesPerSecond,
  2. int? elapsedTimeInSeconds,
  3. int? estimatedTimeToCompletionInSeconds,
  4. int? progressInMegaBytes,
  5. int? snapshotSizeInMegaBytes,
  6. String? status,
})

Implementation

RestoreStatus({
  this.currentRestoreRateInMegaBytesPerSecond,
  this.elapsedTimeInSeconds,
  this.estimatedTimeToCompletionInSeconds,
  this.progressInMegaBytes,
  this.snapshotSizeInMegaBytes,
  this.status,
});