copyWith method

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

Implementation

TimelinePost copyWith({
  String? id,
  String? creatorId,
  TimelinePosterUserModel? creator,
  String? title,
  String? category,
  String? imageUrl,
  Uint8List? image,
  String? content,
  int? likes,
  List<String>? likedBy,
  int? reaction,
  List<TimelinePostReaction>? reactions,
  DateTime? createdAt,
  bool? reactionEnabled,
  Map<String, dynamic>? data,
}) =>
    TimelinePost(
      id: id ?? this.id,
      creatorId: creatorId ?? this.creatorId,
      creator: creator ?? this.creator,
      title: title ?? this.title,
      category: category ?? this.category,
      imageUrl: imageUrl ?? this.imageUrl,
      image: image ?? this.image,
      content: content ?? this.content,
      likes: likes ?? this.likes,
      likedBy: likedBy ?? this.likedBy,
      reaction: reaction ?? this.reaction,
      reactions: reactions ?? this.reactions,
      createdAt: createdAt ?? this.createdAt,
      reactionEnabled: reactionEnabled ?? this.reactionEnabled,
      data: data ?? this.data,
    );