suspend static method

Cmd suspend()

A command that suspends the program.

Similar to pressing Ctrl+Z in a normal terminal program. The program can be resumed later.

Implementation

static Cmd suspend() {
  return const Cmd(_suspend);
}