get method

Future<Note> get(
  1. int noteId
)

Implementation

Future<Note> get(int noteId) async {
  final uri = _project.buildUri(['issues', _iid, 'notes', noteId.toString()]);

  final json = await _gitLab.request(uri) as Map<String, dynamic>;

  return Note.fromJson(json);
}