darttrack function

void darttrack(
  1. List<String> arguments
)

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');
  }
}