FFDoubleValue constructor

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