parentTerminal property

Terminal get parentTerminal

The parent terminal to split this terminal beside. This works whether the parent terminal is in the panel or the editor area.

Implementation

_i3.Terminal get parentTerminal => _i5.getProperty(
      this,
      'parentTerminal',
    );
set parentTerminal (Terminal value)

Implementation

set parentTerminal(_i3.Terminal value) {
  _i5.setProperty(
    this,
    'parentTerminal',
    value,
  );
}