copyWith method
RecommendedChatFolders
copyWith({
- List<
RecommendedChatFolder> ? chatFolders, - dynamic extra,
- int? clientId,
Implementation
RecommendedChatFolders copyWith({
List<RecommendedChatFolder>? chatFolders,
dynamic extra,
int? clientId,
}) =>
RecommendedChatFolders(
chatFolders: chatFolders ?? this.chatFolders,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);