backgroundColor property
Background color of the suggestion area.
Defaults to null
.
Example:
List<ChatMessage> _messages = <ChatMessage>[
ChatMessage(
suggestionSettings: ChatSuggestionSettings(
backgroundColor: Colors.grey[300],
)
),
];
Implementation
@override
final Color? backgroundColor;