FFFunctionCallValues_FFArgument constructor

FFFunctionCallValues_FFArgument({
  1. FFValue? value,
  2. FFTriggerActions? action,
})

Implementation

factory FFFunctionCallValues_FFArgument({
  FFValue? value,
  FFTriggerActions? action,
}) {
  final result = create();
  if (value != null) result.value = value;
  if (action != null) result.action = action;
  return result;
}