Fleet constructor

Fleet({
  1. String? arn,
  2. DateTime? createdAt,
  3. String? lastDeploymentJob,
  4. DeploymentStatus? lastDeploymentStatus,
  5. DateTime? lastDeploymentTime,
  6. String? name,
})

Implementation

Fleet({
  this.arn,
  this.createdAt,
  this.lastDeploymentJob,
  this.lastDeploymentStatus,
  this.lastDeploymentTime,
  this.name,
});