SMSTemplateResponse constructor

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

Implementation

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