FFDateTimeValue constructor
FFDateTimeValue({
- FFDateTime? inputValue,
- 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;
}