TerminalOptions constructor

TerminalOptions({
  1. String? name,
  2. String? shellPath,
  3. Object? shellArgs,
  4. Object? cwd,
  5. Object? env,
  6. bool? strictEnv,
  7. bool? hideFromUser,
  8. String? message,
  9. Object? iconPath,
  10. ThemeColor? color,
  11. Object? location,
  12. bool? isTransient,
})

Implementation

factory TerminalOptions({
  _i2.String? name,
  _i2.String? shellPath,
  _i2.Object? shellArgs,
  _i2.Object? cwd,
  _i2.Object? env,
  _i2.bool? strictEnv,
  _i2.bool? hideFromUser,
  _i2.String? message,
  _i2.Object? iconPath,
  _i3.ThemeColor? color,
  _i2.Object? location,
  _i2.bool? isTransient,
}) =>
    TerminalOptions._(
      name: name,
      shellPath: shellPath,
      shellArgs: shellArgs ?? _i6.undefined,
      cwd: cwd ?? _i6.undefined,
      env: env ?? _i6.undefined,
      strictEnv: strictEnv,
      hideFromUser: hideFromUser,
      message: message,
      iconPath: iconPath ?? _i6.undefined,
      color: color ?? _i6.undefined,
      location: location ?? _i6.undefined,
      isTransient: isTransient,
    );