MessageModel constructor

MessageModel(
  1. String message,
  2. String? userId,
  3. String? threadId, {
  4. int? timestampInMillis,
  5. AiResponseModel? response,
})

Implementation

MessageModel(
  this.message,
  this.userId,
  this.threadId, {
  this.timestampInMillis,
  this.response,
});