FFParameterPass constructor

FFParameterPass({
  1. FFIdentifier? paramIdentifier,
  2. FFParameterValue? inputValue,
  3. @Deprecated('This field is deprecated.') FFPropertyOverride? overrideOld,
  4. FFVariable? variable,
  5. @Deprecated('This field is deprecated.') String? textFieldKeyOld,
  6. FFPropertyParameterPass? widgetProperty,
  7. 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;
}