data property
Specifies the color and typography values for descendant Chat widgets.
Widget build(BuildContext context) {
return Scaffold(
body: SfChatTheme(
data: SfChatThemeData(
brightness: Brightness.dark,
),
child: SfChat()
),
);
}
Implementation
final SfChatThemeData data;