Wait for user to press Enter
static Future<void> waitForEnter([String? message]) async { stdout.write(message ?? 'Press Enter to continue...'); stdin.readLineSync(); }