start method
Runs the tasks in the hook
Implementation
Future<void> start() async {
if (_runInParallel) {
await _executeParallel();
} else {
await _executeSequential();
}
}
Runs the tasks in the hook
Future<void> start() async {
if (_runInParallel) {
await _executeParallel();
} else {
await _executeSequential();
}
}