copyWith method
Implementation
FoundChatMessages copyWith({
int? totalCount,
List<Message>? messages,
int? nextFromMessageId,
}) => FoundChatMessages(
totalCount: totalCount ?? this.totalCount,
messages: messages ?? this.messages,
nextFromMessageId: nextFromMessageId ?? this.nextFromMessageId,
);