ChatTextListTile constructor

const ChatTextListTile({
  1. Key? key,
  2. required String text,
  3. bool isFromMe = true,
  4. Widget? senderName,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? textPadding,
  7. TextStyle? textStyle,
  8. ChatSendStatus? chatSendStatus,
  9. ChatSendStatusWidgets? chatSendStatusWidgets,
  10. String? dateTimeText,
  11. TextStyle? dateTimeTextStyle,
})

Implementation

const ChatTextListTile({
  Key? key,
  required this.text,
  this.isFromMe = true,
  this.senderName,
  this.padding,
  this.textPadding,
  this.textStyle,
  this.chatSendStatus,
  this.chatSendStatusWidgets,
  this.dateTimeText,
  this.dateTimeTextStyle,
}) : super(key: key);