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