FFConstantsVariable constructor

FFConstantsVariable({
  1. FFConstantsVariable_ConstantValue? value,
  2. 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;
}