ChatUIKitTheme constructor
ChatUIKitTheme({
- ChatUIKitColor? color,
- ChatUIKitFont? font,
- required Widget child,
- Key? key,
Implementation
ChatUIKitTheme({
ChatUIKitColor? color,
ChatUIKitFont? font,
required super.child,
super.key,
}) : font = font ?? ChatUIKitFont() {
this.color = color ?? ChatUIKitColor.light();
}