elevation property

  1. @override
double? elevation
final

Depth of the button's shadow, which influences its appearance.

Defaults to 0.0.

Example:


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

Implementation

@override
final double? elevation;