Add Logo to App

This commit is contained in:
2021-02-22 01:37:41 -05:00
parent a3e3544ee8
commit 6827a2994a
5 changed files with 6 additions and 25 deletions

View File

@@ -30,13 +30,6 @@ class IOClientWithCookies extends IOClient {
if (response.headers.containsKey("x-imagini-refreshtoken")) {
await _storage.set("refreshToken", response.headers["x-imagini-refreshtoken"]);
}
_accessToken = await _storage.get("accessToken");
_refreshToken = await _storage.get("refreshToken");
print("Access Token: $_accessToken");
print("Refresh Token: $_refreshToken");
return response;
});
}