textInput property
Displays a text box that users can type into.
For example, the following JSON creates a text input for an email address:
``` As another example, the following JSON creates a text input for a
programming language with static suggestions: ``` "textInput": { "name":
"preferred_programing_language", "label": "Preferred Language",
"initialSuggestions": { "items": [ { "text": "C++" }, { "text": "Java" },
{ "text": "JavaScript" }, { "text": "Python" } ] } } ```
Implementation
GoogleAppsCardV1TextInput? textInput;