selected property

  1. @override
bool selected
final

Indicates whether the suggestion is initially selected.

Example:

List<ChatMessage> _messages = <ChatMessage>[
  ChatMessage(
    suggestions: <ChatMessageSuggestion>[
      const ChatMessageSuggestion(
        data: 'Paris',
        selected: false,
      ),
    ],
  ),
];

Implementation

@override
final bool selected;