BlueprintTemplate constructor

BlueprintTemplate({
  1. required String templateId,
  2. required BlueprintTemplateOriginalTemplate originalTemplate,
  3. required 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. BlueprintTemplateExpandable? expandable,
  12. required GenericLinks links,
})

Implementation

BlueprintTemplate(
    {required this.templateId,
    required this.originalTemplate,
    required 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});