getApiDateTimeOrDefault method
Implementation
DateTime? getApiDateTimeOrDefault(
K key, {
DateTime? defaultValue,
List<K> alternativeKeys = const [],
bool isUtc = true,
bool trySecondsEpoch = true,
}) {
return _parseDateTime(
_valueFor(key, alternativeKeys),
defaultValue,
isUtc,
trySecondsEpoch,
);
}