highlightElevation property

  1. @override
double? highlightElevation
final

Specifies the shadow depth of the action button when it is highlighted.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    actionButton: AssistActionButton(
      highlightElevation: 4.0,
    ),
  );
}

Implementation

@override
final double? highlightElevation;