deleteKey method

Implementation

Future<OpenRouterDeleteApiKeyResponse> deleteKey(String hash) async {
  final response = await _send(
    method: 'DELETE',
    path: '/keys/${Uri.encodeComponent(hash)}',
    expectedStatusCodes: const {200},
  );

  return OpenRouterDeleteApiKeyResponse.fromMap(response);
}