ContentUpdate constructor
ContentUpdate({
- required ContentUpdateVersion version,
- String? title,
- required String type,
- ContentUpdateStatus? status,
- List<
ContentUpdateAncestorsItem> ? ancestors, - ContentUpdateBody? body,
Implementation
ContentUpdate(
{required this.version,
this.title,
required this.type,
this.status,
List<ContentUpdateAncestorsItem>? ancestors,
this.body})
: ancestors = ancestors ?? [];