isReceiverInContacts method
Implementation
Future<bool> isReceiverInContacts({required String senderUserId, required String receiverUserId}) async {
final contactRef = ref!.doc(senderUserId).collection(CONTACT_COLLECTION).doc(receiverUserId);
final contactSnapshot = await contactRef.get();
return contactSnapshot.exists;
}