FFUpdateTextScalingFactorAction constructor
Implementation
factory FFUpdateTextScalingFactorAction({
FFValue? setValue,
FFValue? increment,
$core.double? resetValue,
}) {
final result = create();
if (setValue != null) result.setValue = setValue;
if (increment != null) result.increment = increment;
if (resetValue != null) result.resetValue = resetValue;
return result;
}