margin property

To sets the margin between the suggestion area and individual suggestion items.

Defaults to EdgeInsets.all(5.0).

Example:

List<AssistMessage> _messages = <AssistMessage>[
  AssistMessage.response(
    suggestionSettings: AssistSuggestionSettings(
      margin: const EdgeInsets.only(top: 10, bottom: 10),
    )
  ),
];

Implementation

@override
final EdgeInsetsGeometry margin;