restore method

Future<Project> restore(
  1. String projectIdOrKey
)

Restores a project that has been archived or placed in the Jira recycle bin.

Permissions required:

Implementation

Future<Project> restore(String projectIdOrKey) async {
  return Project.fromJson(await _client.send(
    'post',
    'rest/api/3/project/{projectIdOrKey}/restore',
    pathParameters: {
      'projectIdOrKey': projectIdOrKey,
    },
  ));
}