issueNotesByIid method

IssueNotesApi issueNotesByIid(
  1. int? issueIid
)

Get the IssueNotesApi for an issueIid.

This call doesn't do anything by itself, other than return the configured object. You can safely store the returned object and reuse it.

Implementation

IssueNotesApi issueNotesByIid(int? issueIid) => IssueNotesApi(
      _gitLab,
      this,
      issueIid,
    );