ContentCreate constructor

ContentCreate({
  1. String? id,
  2. String? title,
  3. required String type,
  4. ContentCreateSpace? space,
  5. ContentCreateStatus? status,
  6. ContentCreateContainer? container,
  7. List<ContentCreateAncestorsItem>? ancestors,
  8. ContentCreateBody? body,
})

Implementation

ContentCreate(
    {this.id,
    this.title,
    required this.type,
    this.space,
    this.status,
    this.container,
    List<ContentCreateAncestorsItem>? ancestors,
    this.body})
    : ancestors = ancestors ?? [];