storeToken static method
Implementation
// TOKEN FUNCTIONALITY
static storeToken(String token) async {
try {
await _storage.write(_tokenStorageKey, token);
} catch(e) {
kLog("Error storing token!",tag: classTag,logStatus: LogStatus.ERROR);
}
}