FFGlobalPropertiesVariable constructor
FFGlobalPropertiesVariable({
- FFGlobalPropertiesVariable_GlobalProperty? property,
- FFValue? fractionOfScreen,
Implementation
factory FFGlobalPropertiesVariable({
FFGlobalPropertiesVariable_GlobalProperty? property,
FFValue? fractionOfScreen,
}) {
final result = create();
if (property != null) result.property = property;
if (fractionOfScreen != null) result.fractionOfScreen = fractionOfScreen;
return result;
}