MessageTimestamp constructor

const MessageTimestamp({
  1. Key? key,
  2. required PreciseDateTime at,
  3. SendingStatus? status,
  4. bool date = false,
  5. bool read = false,
  6. bool halfRead = false,
  7. bool delivered = false,
  8. bool inverted = false,
  9. double? fontSize,
})

Implementation

const MessageTimestamp({
  super.key,
  required this.at,
  this.status,
  this.date = false,
  this.read = false,
  this.halfRead = false,
  this.delivered = false,
  this.inverted = false,
  this.fontSize,
});