checkTokenIsValid method
Implementation
Future<bool> checkTokenIsValid(String token) async {
// await _initializeZFData(token);
bool widgetActive = DataManager().isWidgetActive();
bool segmentAllowed = checkSegmenting();
return widgetActive && segmentAllowed;
}