Terminal constructor
Terminal({
- String? name,
- Future? processId,
- dynamic creationOptions,
- TerminalExitStatus? exitStatus,
- TerminalState? state,
- void sendText(])?,
- void show([
- bool?
- void hide()?,
- void dispose()?,
Implementation
factory Terminal({
_i2.String? name,
_i2.Future<_i2.dynamic>? processId,
_i2.dynamic creationOptions,
_i3.TerminalExitStatus? exitStatus,
_i3.TerminalState? state,
void Function(
_i2.String, [
_i2.bool?,
])? sendText,
void Function([_i2.bool?])? show,
void Function()? hide,
void Function()? dispose,
}) =>
Terminal._(
name: name,
processId: processId ?? _i6.undefined,
creationOptions: creationOptions,
exitStatus: exitStatus ?? _i6.undefined,
state: state ?? _i6.undefined,
sendText: sendText == null ? null : _i5.allowInterop(sendText),
show: show == null ? null : _i5.allowInterop(show),
hide: hide == null ? null : _i5.allowInterop(hide),
dispose: dispose == null ? null : _i5.allowInterop(dispose),
);