FFParameterValue constructor
FFParameterValue({
- @Deprecated('This field is deprecated.') FFBaseDataType? legacyType,
- String? serializedValue,
- FFColor? color,
- FFText? translatableText,
- FFIcon? icon,
Implementation
factory FFParameterValue({
@$core.Deprecated('This field is deprecated.') FFBaseDataType? legacyType,
$core.String? serializedValue,
FFColor? color,
FFText? translatableText,
FFIcon? icon,
}) {
final result = create();
if (legacyType != null) result.legacyType = legacyType;
if (serializedValue != null) result.serializedValue = serializedValue;
if (color != null) result.color = color;
if (translatableText != null) result.translatableText = translatableText;
if (icon != null) result.icon = icon;
return result;
}