copyWith method

RecommendedChatFolders copyWith({
  1. List<RecommendedChatFolder>? chatFolders,
  2. dynamic extra,
  3. 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,
    );