DateTimeValue constructor
Implementation
DateTimeValue(
DateTime value, {
this.fixed = _defaultFixed,
this.timeZoneIdentifier,
}) : _dateValue = DateValue(value),
_timeValue = TimeValue(
value,
fixed: fixed,
timeZoneIdentifier: timeZoneIdentifier,
),
super(value, ValueType.dateTime);