saveContact method
Implementation
@override
Future<void> saveContact(ChatwootContact contact) async {
await _clientInstanceIdToContactIdentifierBox.put(
_clientInstanceKey, contact.contactIdentifier!);
await _box.put(contact.contactIdentifier, contact);
}