unblock method
Implementation
Future<void> unblock(String profileId) async {
AppConfig.logger.d("Unblock Mate: $profileId");
try {
if (await ProfileFirestore().unblockProfile(profileId: userServiceImpl.profile.id, profileToUnblock: profileId)) {
userServiceImpl.profile.blockTo!.remove(profileId);
} else {
AppConfig.logger.i("Somethnig happened while unblocking profile");
}
} catch (e, st) {
NeomErrorLogger.recordError(e, st, module: 'neom_core', operation: 'unblock');
}
Sint.back();
update();
}