copyWith method

EditChatFolder copyWith({
  1. int? chatFolderId,
  2. ChatFolder? folder,
})

Implementation

EditChatFolder copyWith({
  int? chatFolderId,
  ChatFolder? folder,
}) =>
    EditChatFolder(
      chatFolderId: chatFolderId ?? this.chatFolderId,
      folder: folder ?? this.folder,
    );