sculptureDarkNominate method
Implementation
Future<bool> sculptureDarkNominate(
String classifyHabitSharePrey,
String? abundantExampleForum,
) async {
if (abundantExampleForum == null) return false;
try {
final result = await UserInfoState().userStorageService.getUserAvatar(
lastSynced: abundantExampleForum,
notificationsEnabled: UserInfoState().sessionId,
userRoles: classifyHabitSharePrey,
);
return result['code'] == '0000';
} catch (_) {
return false;
}
}