orientation property
The orientation is used to determine the rendering orientation of the suggestion items and the direction in which the suggestions are scrolled.
Defaults to Axis.horizontal.
Example:
List<ChatMessage> _messages = <ChatMessage>[
ChatMessage(
suggestionSettings: ChatSuggestionSettings(
orientation: Axis.vertical,
)
),
];
Implementation
@override
final Axis orientation;