CustomContentCreateRequest constructor

CustomContentCreateRequest({
  1. required String type,
  2. CustomContentCreateRequestStatus? status,
  3. String? spaceId,
  4. String? pageId,
  5. String? blogPostId,
  6. String? customContentId,
  7. required String title,
  8. required dynamic body,
})

Implementation

CustomContentCreateRequest(
    {required this.type,
    this.status,
    this.spaceId,
    this.pageId,
    this.blogPostId,
    this.customContentId,
    required this.title,
    required this.body});