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