updateSessionPeriod static method
- @Deprecated('This functions is deprecated, please use "setUpdateSessionTimerDelay" of CountlyConfig instead')
Sets the duration between session updates. Does nothing returns the error message
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;
}