LocalShellSession constructor

LocalShellSession(
  1. ShellSession _shell, {
  2. SessionId? id,
})

Wraps shell, minting a stable local session id used only as the cwd-marker nonce by the controller.

Implementation

LocalShellSession(this._shell, {SessionId? id})
  : _id = id ?? SessionId.generate();