getAll method
Implementation
Future<Map<SecretKey, SecretEntry>> getAll() async =>
(await _rpcManager.post('/secret/getAll', {}))
.map((key, value) => MapEntry(key, SecretEntry.fromJson(value)));
Future<Map<SecretKey, SecretEntry>> getAll() async =>
(await _rpcManager.post('/secret/getAll', {}))
.map((key, value) => MapEntry(key, SecretEntry.fromJson(value)));