FFDoubleValue constructor
FFDoubleValue({
- double? inputValue,
- FFVariable? variable,
- double? mostRecentInputValue,
Implementation
factory FFDoubleValue({
$core.double? inputValue,
FFVariable? variable,
$core.double? mostRecentInputValue,
}) {
final result = create();
if (inputValue != null) result.inputValue = inputValue;
if (variable != null) result.variable = variable;
if (mostRecentInputValue != null)
result.mostRecentInputValue = mostRecentInputValue;
return result;
}