Queue constructor

Queue({
  1. required String name,
  2. String? arn,
  3. DateTime? createdAt,
  4. String? description,
  5. DateTime? lastUpdated,
  6. PricingPlan? pricingPlan,
  7. int? progressingJobsCount,
  8. ReservationPlan? reservationPlan,
  9. QueueStatus? status,
  10. int? submittedJobsCount,
  11. Type? type,
})

Implementation

Queue({
  required this.name,
  this.arn,
  this.createdAt,
  this.description,
  this.lastUpdated,
  this.pricingPlan,
  this.progressingJobsCount,
  this.reservationPlan,
  this.status,
  this.submittedJobsCount,
  this.type,
});