I have created Radiobutton group and first one is coming as auto selected. how can i remove that?
var radio = CardService.newSelectionInput()
.setType(CardService.SelectionInputType.RADIO_BUTTON)
radio.setOnChangeAction(CardService.newAction()
.setFunctionName("setType")
.setLoadIndicator(CardService.LoadIndicator.SPINNER))
radio.setFieldName("event_type").setTitle("Select Type")
radio.addItem('item1',1,false);
radio.addItem('item2',2,false);
radio.addItem('item3',3,false);