checkTokenIsValid method

Future<bool> checkTokenIsValid(
  1. String token
)

Implementation

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