ChatTheme constructor

const ChatTheme({
  1. required ChatColors colors,
  2. required ChatTypography typography,
  3. required BorderRadiusGeometry shape,
})

Creates a ChatTheme instance.

Implementation

const factory ChatTheme({
  /// The color scheme used throughout the chat UI.
  required ChatColors colors,

  /// The text styles used for various elements.
  required ChatTypography typography,

  /// The default border radius for message bubbles only.
  required BorderRadiusGeometry shape,
}) = _ChatTheme;