ContentTemplate constructor

ContentTemplate({
  1. required String templateId,
  2. ContentTemplateOriginalTemplate? originalTemplate,
  3. String? referencingBlueprint,
  4. required String name,
  5. required String description,
  6. Map<String, dynamic>? space,
  7. required List<Label> labels,
  8. required String templateType,
  9. String? editorVersion,
  10. ContentTemplateBody? body,
  11. ContentTemplateExpandable? expandable,
  12. required GenericLinks links,
})

Implementation

ContentTemplate(
    {required this.templateId,
    this.originalTemplate,
    this.referencingBlueprint,
    required this.name,
    required this.description,
    this.space,
    required this.labels,
    required this.templateType,
    this.editorVersion,
    this.body,
    this.expandable,
    required this.links});