chatActionChoosingContact property

ChatActionChoosingContact? chatActionChoosingContact

The user is picking a contact to send

Implementation

ChatActionChoosingContact? get chatActionChoosingContact {
  if (this is ChatActionChoosingContact) {
    return this as ChatActionChoosingContact;
  }
  return null;
}