ProjectSummary constructor

ProjectSummary({
  1. required DateTime createdDate,
  2. required String projectName,
  3. required DateTime updatedDate,
  4. String? arn,
  5. Map<String, String>? tags,
})

Implementation

ProjectSummary({
  required this.createdDate,
  required this.projectName,
  required this.updatedDate,
  this.arn,
  this.tags,
});