Robot constructor

Robot({
  1. Architecture? architecture,
  2. String? arn,
  3. DateTime? createdAt,
  4. String? fleetArn,
  5. String? greenGrassGroupId,
  6. String? lastDeploymentJob,
  7. DateTime? lastDeploymentTime,
  8. String? name,
  9. RobotStatus? status,
})

Implementation

Robot({
  this.architecture,
  this.arn,
  this.createdAt,
  this.fleetArn,
  this.greenGrassGroupId,
  this.lastDeploymentJob,
  this.lastDeploymentTime,
  this.name,
  this.status,
});