copyWith method

TimelinePostReaction copyWith({
  1. String? id,
  2. String? postId,
  3. String? creatorId,
  4. TimelinePosterUserModel? creator,
  5. String? reaction,
  6. String? imageUrl,
  7. DateTime? createdAt,
})

Implementation

TimelinePostReaction copyWith({
  String? id,
  String? postId,
  String? creatorId,
  TimelinePosterUserModel? creator,
  String? reaction,
  String? imageUrl,
  DateTime? createdAt,
}) =>
    TimelinePostReaction(
      id: id ?? this.id,
      postId: postId ?? this.postId,
      creatorId: creatorId ?? this.creatorId,
      creator: creator ?? this.creator,
      reaction: reaction ?? this.reaction,
      imageUrl: imageUrl ?? this.imageUrl,
      createdAt: createdAt ?? this.createdAt,
    );