copyWith method

DeleteChatFolder copyWith({
  1. int? chatFolderId,
  2. List<int>? leaveChatIds,
})

Implementation

DeleteChatFolder copyWith({
  int? chatFolderId,
  List<int>? leaveChatIds,
}) =>
    DeleteChatFolder(
      chatFolderId: chatFolderId ?? this.chatFolderId,
      leaveChatIds: leaveChatIds ?? this.leaveChatIds,
    );