exitWithCode method

Future<void> exitWithCode(
  1. int code
)
inherited

Terminates the CLI app with a code.

Implementation

Future<void> exitWithCode(final int code) async {
  await _terminate(code: code);
}