Data constructor

const Data({
  1. String? companyUid,
  2. String? contactUid,
  3. DateTime? createdAt,
  4. int? id,
  5. String? message,
  6. String? messageFrom,
  7. String? messageType,
  8. String? platform,
  9. String? recipientId,
  10. String? senderId,
  11. String? status,
  12. String? timestamp,
  13. String? twitterMessageUid,
  14. String? uid,
  15. DateTime? updatedAt,
})

Implementation

const Data({
  this.companyUid,
  this.contactUid,
  this.createdAt,
  this.id,
  this.message,
  this.messageFrom,
  this.messageType,
  this.platform,
  this.recipientId,
  this.senderId,
  this.status,
  this.timestamp,
  this.twitterMessageUid,
  this.uid,
  this.updatedAt,
});