ContentCreate constructor
ContentCreate({
- String? id,
- String? title,
- required String type,
- ContentCreateSpace? space,
- ContentCreateStatus? status,
- ContentCreateContainer? container,
- List<
ContentCreateAncestorsItem> ? ancestors, - ContentCreateBody? body,
Implementation
ContentCreate(
{this.id,
this.title,
required this.type,
this.space,
this.status,
this.container,
List<ContentCreateAncestorsItem>? ancestors,
this.body})
: ancestors = ancestors ?? [];