CreateBlogObject constructor

CreateBlogObject({
  1. required String id,
  2. required String type,
  3. required int activityCount,
  4. required String atype,
  5. required String category,
  6. required String moderation,
  7. required int points,
  8. required String state,
  9. required int createdAt,
  10. required String module,
  11. required String name,
  12. required dynamic team,
  13. required dynamic pointType,
  14. required CreateBlogParticipant participant,
  15. required int votesCount,
  16. required String title,
  17. required String format,
  18. required List tags,
  19. required List participantsTags,
  20. required List files,
  21. required dynamic pushRedirectUrl,
})

Implementation

CreateBlogObject({
    required this.id,
    required this.type,
    required this.activityCount,
    required this.atype,
    required this.category,
    required this.moderation,
    required this.points,
    required this.state,
    required this.createdAt,
    required this.module,
    required this.name,
    required this.team,
    required this.pointType,
    required this.participant,
    required this.votesCount,
    required this.title,
    required this.format,
    required this.tags,
    required this.participantsTags,
    required this.files,
    required this.pushRedirectUrl,
});