A context card that represents a single view in the UI.
var cardSection = CardService.newCardSection(); // Finish building the card section ... var card = CardService.newCardBuilder() .setName("Card name") .setHeader(CardService.newCardHeader().setTitle("Card title")) .addSection(cardSection) .build();
A context card that represents a single view in the UI.