copyWith method
Implementation
AddedReaction copyWith({
ReactionType? type,
MessageSender? senderId,
int? date,
}) =>
AddedReaction(
type: type ?? this.type,
senderId: senderId ?? this.senderId,
date: date ?? this.date,
);