backgroundColor property

  1. @override
Color? backgroundColor
final

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;