AssistMessageToolbarSettings constructor

const AssistMessageToolbarSettings({
  1. ShapeBorder? shape,
  2. WidgetStateProperty<ShapeBorder?>? itemShape,
  3. Color? backgroundColor,
  4. WidgetStateProperty<Color?>? itemBackgroundColor,
  5. EdgeInsetsGeometry padding = const EdgeInsetsDirectional.symmetric(vertical: 4.0),
  6. EdgeInsetsGeometry itemPadding = const EdgeInsets.all(9.0),
  7. double spacing = 8.0,
  8. double runSpacing = 8.0,
})

Creates a AssistMessageToolbarSettings with the given parameters.

Implementation

const AssistMessageToolbarSettings({
  this.shape,
  this.itemShape,
  this.backgroundColor,
  this.itemBackgroundColor,
  this.padding = const EdgeInsetsDirectional.symmetric(vertical: 4.0),
  this.itemPadding = const EdgeInsets.all(9.0),
  this.spacing = 8.0,
  this.runSpacing = 8.0,
});