stop static method
- @Deprecated('Automatic sessions are handled by underlying SDK, this function will do nothing')
Stops automatic session tracking. Does nothing returns the error message
Implementation
@Deprecated('Automatic sessions are handled by underlying SDK, this function will do nothing')
static Future<String?> stop() async {
String msg = 'Automatic sessions are handled by underlying SDK, this function will do nothing';
log(msg, logLevel: LogLevel.WARNING);
return msg;
}