exit static method

void exit(
  1. int code, {
  2. bool withNewLine = true,
  3. bool withClearing = false,
})

Exit the console session.

Implementation

static void exit(int code,
        {bool withNewLine = true, bool withClearing = false}) =>
    exitImpl(code, withNewLine: withNewLine, withClearing: withClearing);