exit method

  1. @override
Never exit(
  1. int code
)
override

Exit the application with the given code. Throws UnsupportedError on platforms that don't support this.

Implementation

@override
Never exit(int code) {
  io.exit(code);
}