run function
Runs the Dapper CLI.
Implementation
void run(List<String> arguments, {DapperCli cli = const DapperCli()}) {
try {
final result = cli.run(arguments);
exitCode = result.code;
} catch (e, stack) {
stderr.writeln('Unexpected error: $e');
stderr.writeln(stack);
exitCode = ExitCode.error.code;
}
}