Deletes a contact by ID
id - The unique identifier of the contact to delete
id
Future<Result<void>> deleteContact(String id) async { _ensureInitialized(); return _repository.deleteContact(id); }