elevation property

  1. @override
double? elevation
final

The elevation property specifies the shadow depth of the action button.

Example:

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

Implementation

@override
final double? elevation;