prompts property

Prompts? get prompts

Present if the server offers any prompt templates.

Implementation

Prompts? get prompts => _value['prompts'] as Prompts?;
set prompts (Prompts? value)

Sets prompts if it is null, otherwise throws.

Implementation

set prompts(Prompts? value) {
  assert(prompts == null);
  _value['prompts'] = value;
}