Gets and sets whether this parameter is included in the Favorites list in the parameters dialog
# Get the value of the property.propertyValue = parameter_var.isFavorite# Set the value of the property.parameter_var.isFavorite = propertyValue
#include <Fusion/Fusion/Parameter.h>// Get the value of the property.boolean propertyValue = parameter_var->isFavorite();// Set the value of the property, where value_var is a boolean.bool returnValue = parameter_var->isFavorite(value_var);