FFFormOptionsValue constructor

FFFormOptionsValue({
  1. Iterable<FFParameterValue>? values,
  2. FFVariable? variable,
})

Implementation

factory FFFormOptionsValue({
  $core.Iterable<FFParameterValue>? values,
  FFVariable? variable,
}) {
  final result = create();
  if (values != null) result.values.addAll(values);
  if (variable != null) result.variable = variable;
  return result;
}