ContentTemplateCreate constructor
ContentTemplateCreate({
- required String name,
- required String templateType,
- required ContentTemplateBodyCreate body,
- String? description,
- List<
Label> ? labels, - ContentTemplateCreateSpace? space,
Implementation
ContentTemplateCreate(
{required this.name,
required this.templateType,
required this.body,
this.description,
List<Label>? labels,
this.space})
: labels = labels ?? [];