Message constructor

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

Implementation

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