Command constructor

Command({
  1. String? acknowledgedAt,
  2. String? commandId,
  3. String? completedAt,
  4. String? createdAt,
  5. String? deploymentId,
  6. int? exitCode,
  7. String? instanceId,
  8. String? logUrl,
  9. String? status,
  10. String? type,
})

Implementation

Command({
  this.acknowledgedAt,
  this.commandId,
  this.completedAt,
  this.createdAt,
  this.deploymentId,
  this.exitCode,
  this.instanceId,
  this.logUrl,
  this.status,
  this.type,
});