copyWith method

RecommendedChatFolder copyWith({
  1. ChatFolder? folder,
  2. String? description,
})

Implementation

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