load method
Implementation
Future<bool> load() async {
String? jsonToken = await _cacheService.get('token');
this._token =
jsonToken != null ? Token.fromJson(jsonDecode(jsonToken)) : null;
notifyListeners();
return this._token != null;
}