Is it possible to assign "password" type to the Google apps script input box so that text doesn't show? My code is working fine except the input field is just text box and displays the text rather than "......"
var section = CardService.newCardSection();
section.addWidget(CardService.newTextInput()
.setFieldName('Password')
.setTitle('Password'));