TalkerScreenTheme constructor

const TalkerScreenTheme({
  1. Color backgroundColor = const Color(0xFF212121),
  2. Color textColor = Colors.white,
  3. Color cardColor = defaultCardBackgroundColor,
  4. LogColors? logColors,
})

Implementation

const TalkerScreenTheme({
  this.backgroundColor = const Color(0xFF212121),
  this.textColor = Colors.white,
  this.cardColor = defaultCardBackgroundColor,
  LogColors? logColors,
}) : _customColors = logColors;