ExecutionService constructor

ExecutionService(
  1. String name
)

Implementation

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