Message constructor

Message({
  1. String id = "",
  2. String address = "",
  3. String body = "",
  4. String date = "",
  5. String type = "",
  6. bool read = false,
})

Implementation

Message({
  this.id = "",
  this.address = "",
  this.body = "",
  this.date = "",
  this.type = "",
  this.read = false,
});