getAll method

Implementation

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