TerminalPtyLibrary constructor

TerminalPtyLibrary({
  1. String executable = "sh",
  2. String? workingDirectory,
  3. String? libraryPtyPath,
  4. List<String>? arguments,
  5. int columns = 80,
  6. Map? environment,
  7. bool isAckRead = false,
  8. int rows = 25,
})

Implementation

TerminalPtyLibrary({
  super.executable,
  super.workingDirectory,
  super.libraryPtyPath,
  super.arguments,
  super.columns,
  super.environment,
  super.isAckRead,
  super.rows,
}) {
  openLibrary(libraryPath: libraryPtyPath);
}