ExecutionService constructor
ExecutionService(
- String name
Implementation
factory ExecutionService(String name) {
switch (name) {
case 'LAUNCH_DATA':
return LAUNCH_DATA;
}
throw Exception('Illegal enum value: $name');
}