public async Task UpdateIssue()

in src/YouTrackSharp/Issues/IssuesService.cs [159:185]


        public async Task UpdateIssue(string issueId, string summary = null, string description = null, bool? isMarkdown = null)
        {
            if (string.IsNullOrEmpty(issueId))
            {
                throw new ArgumentNullException(nameof(issueId));
            }

            if (summary == null && description == null)
            {
                return;
            }
            
            var issue = new Generated.Issue();
            
            if (!string.IsNullOrEmpty(summary))
            {
                issue.Summary = summary;
            }
            if (!string.IsNullOrEmpty(description))
            {
                issue.Description = description;
            }

            var client = await _connection.GetAuthenticatedApiClient();
            
            await client.IssuesPostAsync(issueId, false, "id", issue);
        }