coloredTheme property
ChatColorThemeData
get
coloredTheme
The method for the get the colored theme.
Implementation
ChatColorThemeData get coloredTheme {
final brightness = MediaQuery.of(this).platformBrightness;
final chatTheme = ChatTheme.of(this);
return brightness == Brightness.light ? chatTheme.light : chatTheme.dark;
}