uid property

num? get uid

Sets the child process’s user ID. This translates to a setuid call in the child process. Failure in the set uid call will cause the spawn to fail.

Implementation

_i2.num? get uid => _i3.getProperty(
      this,
      'uid',
    );
set uid (num? value)

Implementation

set uid(_i2.num? value) {
  _i3.setProperty(
    this,
    'uid',
    value ?? _i6.undefined,
  );
}