ContactChatMessage constructor

ContactChatMessage({
  1. String? contactName,
  2. List<String>? contactPhoneNumbers,
  3. List<bool>? isChatAppUser,
  4. String? messageId,
})

Implementation

ContactChatMessage({
  this.contactName,
  this.contactPhoneNumbers,
  this.isChatAppUser,
  this.messageId,
});