RCKLastMessageConfig constructor

RCKLastMessageConfig({
  1. double fontSize = convoLastFontSize,
  2. Color? color,
  3. FontWeight fontWeight = FontWeight.normal,
  4. int maxLines = 1,
  5. Map<Type, String>? customTypeText,
})

Implementation

RCKLastMessageConfig({
  this.fontSize = convoLastFontSize,
  Color? color,
  this.fontWeight = FontWeight.normal,
  this.maxLines = 1,
  this.customTypeText,
}) : color = color ??
          RCKThemeProvider().themeColor.textSecondary ??
          const Color(0xFF999999);