Verbosity enum

Verbosity level for output.

Constrains the verbosity of the model's response. Lower values will result in more concise responses, while higher values will result in more verbose responses.

Inheritance
Available extensions

Values

unknown → const Verbosity

Unknown verbosity (fallback for unrecognized values).

const Verbosity('unknown')
low → const Verbosity

Low verbosity — more concise responses.

const Verbosity('low')
medium → const Verbosity

Medium verbosity (default).

const Verbosity('medium')
high → const Verbosity

High verbosity — more detailed responses.

const Verbosity('high')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
The JSON value for this verbosity.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
Converts to JSON value.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<Verbosity>
A constant List of the values in this enum, in order of their declaration.