copyWith method
Implementation
ChatAvailableReactionsSome copyWith({
List<ReactionType>? reactions,
int? maxReactionCount,
}) => ChatAvailableReactionsSome(
reactions: reactions ?? this.reactions,
maxReactionCount: maxReactionCount ?? this.maxReactionCount,
);