Message constructor

const Message({
  1. String? uid,
  2. String? type,
  3. String? content,
  4. String? status,
  5. String? createdAt,
  6. String? client,
  7. String? extra,
  8. String? threadTopic,
  9. UserProtobuf? user,
})

Implementation

const Message({
  this.uid,
  this.type,
  this.content,
  this.status,
  this.createdAt,
  this.client,
  this.extra,
  //
  this.threadTopic,
  this.user,
}) : super();