all_exit_codes 2.0.0 all_exit_codes: ^2.0.0 copied to clipboard
Just terminal exit codes with more description to use in dart
example/all_exit_codes_example.dart
import 'dart:io';
import 'package:all_exit_codes/all_exit_codes.dart';
Never main() {
print('Maybe you are using this command wrong. Check the usage.');
exit(wrongUsage);
}