toBeExecuted method

  1. @override
void toBeExecuted(
  1. String pathToRoot
)
override

Task logic implemented by the child class which will be executed.

Implementation

@override
void toBeExecuted(String pathToRoot) {
  switch (option) {
    case "android":
    case "":
      _executeInitAndroid(pathToRoot);
      break;
    default:
      throw KlutterException("Invalid option value: '$option'");
  }
}