getAdvancedSettings method
Returns the application properties that are accessible on the Advanced Settings page. To navigate to the Advanced Settings page in Jira, choose the Jira icon > Jira settings > System, General Configuration and then click Advanced Settings (in the upper right).
Permissions required: Administer Jira global permission.
Implementation
Future<List<ApplicationProperty>> getAdvancedSettings() async {
return (await _client.send(
'get',
'rest/api/3/application-properties/advanced-settings',
) as List<Object?>)
.map((i) => ApplicationProperty.fromJson(
i as Map<String, Object?>? ?? const {}))
.toList();
}