upsert method
Implementation
Future<SecretEntry> upsert(SecretKey key, SecretValue value) => _rpcManager
.post('/secret/api-key/upsert', SecretKeyRefRequest(key: key))
.then((value) => SecretEntry.fromJson(value));
Future<SecretEntry> upsert(SecretKey key, SecretValue value) => _rpcManager
.post('/secret/api-key/upsert', SecretKeyRefRequest(key: key))
.then((value) => SecretEntry.fromJson(value));