SfChatTheme constructor

const SfChatTheme({
  1. required SfChatThemeData data,
  2. required Widget child,
  3. Key? key,
})

Applies the given theme data to child.

The data and child arguments must not be null.

Implementation

const SfChatTheme({required this.data, required super.child, super.key});