ProgressDetail constructor

ProgressDetail({
  1. RobotDeploymentStep? currentProgress,
  2. int? estimatedTimeRemainingSeconds,
  3. double? percentDone,
  4. String? targetResource,
})

Implementation

ProgressDetail({
  this.currentProgress,
  this.estimatedTimeRemainingSeconds,
  this.percentDone,
  this.targetResource,
});