ContentUpdate constructor

ContentUpdate({
  1. required ContentUpdateVersion version,
  2. String? title,
  3. required String type,
  4. ContentUpdateStatus? status,
  5. List<ContentUpdateAncestorsItem>? ancestors,
  6. ContentUpdateBody? body,
})

Implementation

ContentUpdate(
    {required this.version,
    this.title,
    required this.type,
    this.status,
    List<ContentUpdateAncestorsItem>? ancestors,
    this.body})
    : ancestors = ancestors ?? [];