focusElevation property

  1. @override
double? focusElevation
final

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

Example:

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

Implementation

@override
final double? focusElevation;