ContentTemplateUpdate constructor

ContentTemplateUpdate({
  1. required String templateId,
  2. required String name,
  3. required ContentTemplateUpdateTemplateType templateType,
  4. required ContentTemplateBodyCreate body,
  5. String? description,
  6. List<Label>? labels,
  7. ContentTemplateUpdateSpace? space,
})

Implementation

ContentTemplateUpdate(
    {required this.templateId,
    required this.name,
    required this.templateType,
    required this.body,
    this.description,
    List<Label>? labels,
    this.space})
    : labels = labels ?? [];