manualSessionHandling static method
- @Deprecated('This functions is deprecated, please use "enableManualSessionHandling" of CountlyConfig instead')
Enable manual session handling Should be called before init. Only implemented for iOS platform. returns the error or success message
Implementation
@Deprecated('This functions is deprecated, please use "enableManualSessionHandling" of CountlyConfig instead')
static Future<String?> manualSessionHandling() async {
log('Calling "manualSessionHandling"');
log('manualSessionHandling is deprecated, use enableManualSessionHandling of CountlyConfig instead', logLevel: LogLevel.WARNING);
final String? result = await _channel.invokeMethod('manualSessionHandling');
return result;
}