IssueNotesApi class

The documentation for this API is here: https://docs.gitlab.com/ee/api/notes.html

Constructors

IssueNotesApi(GitLab _gitLab, ProjectsApi _project, int? issueIid)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

create(String body) Future<Note>
Adds a note to an issue.
delete(int noteId) Future<void>
Deletes an existing note.
get(int noteId) Future<Note>
Retrieves a single note.
list({NoteOrderBy? orderBy, NoteSort? sort, int? page, int? perPage}) Future<List<Note>>
Retrieves the list of notes of an issue.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
update(int noteId, String body) Future<Note>
Updates the body of an existing note.

Operators

operator ==(Object other) bool
The equality operator.
inherited