outro static method
Display an outro message
Implementation
static void outro(String message, {String? link}) {
stdout.writeln('');
rule();
stdout.writeln(message);
if (link != null) {
stdout.writeln(link);
}
rule();
stdout.writeln('');
}