ChatEntryWidget constructor

const ChatEntryWidget({
  1. ChatService? chatService,
  2. dynamic onTap()?,
  3. double widgetSize = 75,
  4. Color backgroundColor = Colors.grey,
  5. IconData icon = Icons.chat,
  6. Color iconColor = Colors.black,
  7. Color counterBackgroundColor = Colors.red,
  8. TextStyle? textStyle,
  9. Key? key,
})

Constructs a ChatEntryWidget.

Implementation

const ChatEntryWidget({
  this.chatService,
  this.onTap,
  this.widgetSize = 75,
  this.backgroundColor = Colors.grey,
  this.icon = Icons.chat,
  this.iconColor = Colors.black,
  this.counterBackgroundColor = Colors.red,
  this.textStyle,
  super.key,
});