FFGlobalPropertiesVariable constructor

FFGlobalPropertiesVariable({
  1. FFGlobalPropertiesVariable_GlobalProperty? property,
  2. 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;
}