storeAuthData static method
Store authentication data in apiCacheStorage.
Implementation
static storeAuthData(Map<String, dynamic>? data) {
try {
_storage.write(_authDataStorageKey, data);
} catch (e) {
kLog("Error storing auth data!",
tag: classTag, logStatus: LogStatus.ERROR);
}
}