FFConstantsVariable constructor
FFConstantsVariable({
- FFConstantsVariable_ConstantValue? value,
- FFIdentifier? identifier,
Implementation
factory FFConstantsVariable({
FFConstantsVariable_ConstantValue? value,
FFIdentifier? identifier,
}) {
final result = create();
if (value != null) result.value = value;
if (identifier != null) result.identifier = identifier;
return result;
}