backgroundColor property
Background color of the button.
Defaults to null.
Example:
@override
Widget build(BuildContext context) {
  return SfChat(
    actionButton: ChatActionButton(
      backgroundColor: Colors.white,
    ),
  );
}
Implementation
final Color? backgroundColor;