Message.time constructor

Message.time(
  1. int id,
  2. String content,
  3. bool fromMe,
  4. bool showTime,
  5. String date,
)

Implementation

Message.time(int id, String content, bool fromMe, bool showTime, String date) {
  this.id = id;
  this.date = date;
  this.content = content;
  this.fromMe = fromMe;
  this.showTime = showTime;
}