logout static method
Implementation
static Future<List<Object>> logout(
bool isLocal, String backendCanisterId) async {
await SecureStore.deleteSecureData("pubKey");
await SecureStore.deleteSecureData("privKey");
await SecureStore.deleteSecureData("delegation");
return AuthLogIn.getDelegations(isLocal, backendCanisterId);
}