TerminalPtyLibrary constructor
TerminalPtyLibrary({})
Spawns a process in a pseudo-terminal. The arguments have the same meaning as in Process.start. ackRead indicates if the pty should wait for a call to TerminalPtyLibrary.ackRead before sending the next data.
Implementation
TerminalPtyLibrary({
super.executable,
super.workingDirectory,
super.libraryPtyPath,
super.arguments,
super.columns,
super.environment,
super.isAckRead,
super.rows,
}) {
openLibrary(
libraryPath: libraryPtyPath,
);
ensureInitialized();
}