start method

Future<void> start()

Runs the tasks in the hook

Implementation

Future<void> start() async {
  if (_runInParallel) {
    await _executeParallel();
  } else {
    await _executeSequential();
  }
}