copyWith method
Implementation
RecommendedChatFolder copyWith({
ChatFolder? folder,
String? description,
}) =>
RecommendedChatFolder(
folder: folder ?? this.folder,
description: description ?? this.description,
);
RecommendedChatFolder copyWith({
ChatFolder? folder,
String? description,
}) =>
RecommendedChatFolder(
folder: folder ?? this.folder,
description: description ?? this.description,
);