backgroundColor property
The backgroundColor property sets the background color for the suggestion area.
Example:
List<AssistMessage> _messages = <AssistMessage>[
AssistMessage.response(
suggestionSettings: AssistSuggestionSettings(
backgroundColor: Colors.grey[300],
)
),
];
Implementation
@override
final Color? backgroundColor;