问题 I use active choice reactive parameter with declarative pipeline. But I ran into a problem. Is there any way to pass list object into script or call external method? For example environments = 'lab\nstage\npro' List<String> someList = ['ccc', 'ddd'] def someMethod() { return ['aaa', 'bbb'] } properties([ parameters([ choice(name: 'ENVIRONMENT', choices: "${environments}"), [$class: 'CascadeChoiceParameter', choiceType: 'PT_SINGLE_SELECT', description: 'Select a choice', filterLength: 1,