darttrack function
Main function of the application
Start watch dir
files changes and run script
when is it happened.
Implementation
void darttrack(List<String> arguments) {
try {
Controller(arguments);
} on Exception catch (e) {
print('Controller error: $e');
}
}