chatActionBarAddContact property

ChatActionBarAddContact? chatActionBarAddContact

The chat is a private or secret chat and the other user can be added to the contact list using the method addContact

Implementation

ChatActionBarAddContact? get chatActionBarAddContact {
  if (this is ChatActionBarAddContact) {
    return this as ChatActionBarAddContact;
  }
  return null;
}