printNativeSessionLogs method

void printNativeSessionLogs()

Prints logs from the native code Use it for debugging the native part of the code

Implementation

void printNativeSessionLogs() {
  _throwIfDisposed();
  final logs = _sessionAdapter.logs.toDartStringList();
  debugPrint("logs count: ${logs.length}");
  for (final log in logs) {
    debugPrint(log);
  }
}