updateSessionPeriod static method

  1. @Deprecated('This functions is deprecated, please use "setUpdateSessionTimerDelay" of CountlyConfig instead')
Future<String?> updateSessionPeriod()

Implementation

@Deprecated('This functions is deprecated, please use "setUpdateSessionTimerDelay" of CountlyConfig instead')
static Future<String?> updateSessionPeriod() async {
  log('Calling "updateSessionPeriod"');
  String msg = 'updateSessionPeriod is deprecated, use setUpdateSessionTimerDelay of CountlyConfig instead';
  log(msg, logLevel: LogLevel.WARNING);
  return msg;
}