FFIntegerValue constructor

FFIntegerValue({
  1. int? inputValue,
  2. FFVariable? variable,
  3. 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;
}