elevation property

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

final double? elevation;