copyWith method
Implementation
Chats copyWith({
int? totalCount,
List<int>? chatIds,
dynamic extra,
int? clientId,
}) => Chats(
totalCount: totalCount ?? this.totalCount,
chatIds: chatIds ?? this.chatIds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);