Message constructor

Message(
  1. int? id,
  2. String? senderId,
  3. String? receiverId,
  4. String? text,
  5. String? status,
)

Implementation

Message(this.id, this.senderId, this.receiverId, this.text, this.status);