Project constructor

Project({
  1. String? arn,
  2. DateTime? created,
  3. int? defaultJobTimeoutMinutes,
  4. String? name,
})

Implementation

Project({
  this.arn,
  this.created,
  this.defaultJobTimeoutMinutes,
  this.name,
});