getResolutions method

  1. @deprecated
Future<List<Resolution>> getResolutions()

Returns a list of all issue resolution values.

Permissions required: Permission to access Jira.

Implementation

@deprecated
Future<List<Resolution>> getResolutions() async {
  return (await _client.send(
    'get',
    'rest/api/3/resolution',
  ) as List<Object?>)
      .map((i) => Resolution.fromJson(i as Map<String, Object?>? ?? const {}))
      .toList();
}