on_exit 1.0.0 copy "on_exit: ^1.0.0" to clipboard
on_exit: ^1.0.0 copied to clipboard

hook on dart process exit

example/example.dart

import 'package:on_exit/init.dart';

void main() async {
  onExit(() {
    print('on exit callback');
  });
  print('hi');
  await onExit.exit(0);
}