FFFormOptionsValue constructor
FFFormOptionsValue({
- Iterable<
FFParameterValue> ? values, - 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;
}