TemplateResponse constructor

TemplateResponse({
  1. required String creationDate,
  2. required String lastModifiedDate,
  3. required String templateName,
  4. required TemplateType templateType,
  5. String? arn,
  6. String? defaultSubstitutions,
  7. String? templateDescription,
  8. String? version,
  9. Map<String, String>? tags,
})

Implementation

TemplateResponse({
  required this.creationDate,
  required this.lastModifiedDate,
  required this.templateName,
  required this.templateType,
  this.arn,
  this.defaultSubstitutions,
  this.templateDescription,
  this.version,
  this.tags,
});