TimelinePost constructor

const TimelinePost({
  1. required String id,
  2. required String creatorId,
  3. required String title,
  4. required String content,
  5. required int likes,
  6. required int reaction,
  7. required DateTime createdAt,
  8. required bool reactionEnabled,
  9. String? category,
  10. TimelinePosterUserModel? creator,
  11. List<String>? likedBy,
  12. List<TimelinePostReaction>? reactions,
  13. String? imageUrl,
  14. Uint8List? image,
  15. Map<String, dynamic> data = const {},
})

Implementation

const TimelinePost({
  required this.id,
  required this.creatorId,
  required this.title,
  required this.content,
  required this.likes,
  required this.reaction,
  required this.createdAt,
  required this.reactionEnabled,
  this.category,
  this.creator,
  this.likedBy,
  this.reactions,
  this.imageUrl,
  this.image,
  this.data = const {},
});