copyWith method
Implementation
ChatMessageReaction copyWith({
String? reaction,
int? userCount,
bool? isAddedBySelf,
List<String>? userList,
}) {
return ChatMessageReaction._private(
reaction: reaction ?? this.reaction,
userCount: userCount ?? this.userCount,
isAddedBySelf: isAddedBySelf ?? this.isAddedBySelf,
userList: userList ?? this.userList,
);
}