FFDateTimeValue constructor

FFDateTimeValue({
  1. FFDateTime? inputValue,
  2. FFVariable? variable,
})

Implementation

factory FFDateTimeValue({
  FFDateTime? inputValue,
  FFVariable? variable,
}) {
  final result = create();
  if (inputValue != null) result.inputValue = inputValue;
  if (variable != null) result.variable = variable;
  return result;
}