ChatTheme.light constructor

ChatTheme.light({
  1. String? fontFamily,
})

Creates a default light theme. Optionally specify a fontFamily.

Implementation

factory ChatTheme.light({String? fontFamily}) => ChatTheme(
  colors: ChatColors.light(),
  typography: ChatTypography.standard(fontFamily: fontFamily),
  shape: const BorderRadius.all(Radius.circular(12)),
);