ChatUIKitTheme constructor

ChatUIKitTheme({
  1. ChatUIKitColor? color,
  2. ChatUIKitFont? font,
  3. required Widget child,
  4. Key? key,
})

Implementation

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