TimestampedChatMessage constructor

const TimestampedChatMessage({
  1. Key? key,
  2. required String text,
  3. required TextStyle textStyle,
  4. String? timestamp,
  5. bool isEdited = false,
  6. IconData? statusIcon,
  7. Color? statusIconColor,
  8. double? statusIconSize,
  9. TextStyle? metaStyle,
})

Implementation

const TimestampedChatMessage({
  super.key,
  required this.text,
  required this.textStyle,
  this.timestamp,
  this.isEdited = false,
  this.statusIcon,
  this.statusIconColor,
  this.statusIconSize,
  this.metaStyle,
});