ProjectDescription constructor

ProjectDescription({
  1. required DateTime createdDate,
  2. required String projectName,
  3. required DateTime updatedDate,
  4. String? arn,
  5. String? description,
  6. PlacementTemplate? placementTemplate,
  7. Map<String, String>? tags,
})

Implementation

ProjectDescription({
  required this.createdDate,
  required this.projectName,
  required this.updatedDate,
  this.arn,
  this.description,
  this.placementTemplate,
  this.tags,
});