getGathererAccessToken method
Implementation
@override
Future<Either<Failure, String>> getGathererAccessToken() async {
try {
var result = _sharedPref.getString(localKeyGathererToken);
return Right(result ?? "");
} catch (e) {
return Left(CacheFailure());
}
}