Properties
    
        - 
  hashCode
  → int
  
- 
  The hash code for this object.
  no setterinherited 
- 
  runtimeType
  → Type
  
- 
  A representation of the runtime type of the object.
  no setterinherited 
 
    
  
    Methods
    
        - 
  exec(String command, [ExecOptions options, ExecCallback callback])
    → ChildProcess
  
  
- 
  Spawns a shell then executes the command within that shell, buffering any
generated output.
  
- 
  execFile(String file, [List<String> args, ExecOptions options, ExecCallback callback])
    → ChildProcess
  
  
- 
  Similar to exec except that it does not spawn a shell.
  
- 
  execFileSync(String file, [List<String> args, ExecOptions options])
    → dynamic
  
  
- 
  This method is generally identical to execFile with the exception that it
will not return until the child process has fully closed.
  
- 
  execSync(String command, [ExecOptions options])
    → dynamic
  
  
- 
  This method is generally identical to exec with the exception that it
will not return until the child process has fully closed.
  
- 
  fork(String modulePath, [List<String> args, ForkOptions options])
    → ChildProcess
  
  
- 
  This is a special case of spawn used specifically to spawn new
Node.js processes.
  
- 
  noSuchMethod(Invocation invocation)
    → dynamic
  
  
- 
  Invoked when a nonexistent method or property is accessed.
  inherited 
- 
  spawn(String command, [List<String> args, SpawnOptions options])
    → ChildProcess
  
  
- 
  Spawns a new process using the given command, with command line arguments
inargs.
- 
  spawnSync(String command, [List<String> args, ExecOptions options])
    → dynamic
  
  
- 
  This method is generally identical to spawn with the exception that it
will not return until the child process has fully closed.
  
- 
  toString()
    → String
  
  
- 
  A string representation of this object.
  inherited