copyWith method
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,
})
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,
);