stop static method

  1. @Deprecated('Automatic sessions are handled by underlying SDK, this function will do nothing')
Future<String?> stop()

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;
}