resetSpaceTheme method

Future<void> resetSpaceTheme(
  1. String spaceKey
)

Resets the space theme. This means that the space will inherit the global look and feel settings

Permissions required: 'Admin' permission for the space.

Implementation

Future<void> resetSpaceTheme(String spaceKey) async {
  await _client.send(
    'delete',
    'wiki/rest/api/space/{spaceKey}/theme',
    pathParameters: {
      'spaceKey': spaceKey,
    },
  );
}