Message constructor

Message({
  1. DateTime? updatedAt,
  2. String? role,
  3. String? content,
  4. String? status,
  5. DateTime? createdAt,
  6. String? id,
  7. String? ticketId,
})

Implementation

Message(
    {this.updatedAt,
    this.role,
    this.content,
    this.status,
    this.createdAt,
    this.id,
    this.ticketId});