FFParameterPass constructor
FFParameterPass({
- FFIdentifier? paramIdentifier,
- FFParameterValue? inputValue,
- @Deprecated('This field is deprecated.') FFPropertyOverride? overrideOld,
- FFVariable? variable,
- @Deprecated('This field is deprecated.') String? textFieldKeyOld,
- FFPropertyParameterPass? widgetProperty,
- FFTriggerActions? action,
Implementation
factory FFParameterPass({
FFIdentifier? paramIdentifier,
FFParameterValue? inputValue,
@$core.Deprecated('This field is deprecated.')
FFPropertyOverride? overrideOld,
FFVariable? variable,
@$core.Deprecated('This field is deprecated.')
$core.String? textFieldKeyOld,
FFPropertyParameterPass? widgetProperty,
FFTriggerActions? action,
}) {
final result = create();
if (paramIdentifier != null) result.paramIdentifier = paramIdentifier;
if (inputValue != null) result.inputValue = inputValue;
if (overrideOld != null) result.overrideOld = overrideOld;
if (variable != null) result.variable = variable;
if (textFieldKeyOld != null) result.textFieldKeyOld = textFieldKeyOld;
if (widgetProperty != null) result.widgetProperty = widgetProperty;
if (action != null) result.action = action;
return result;
}