tryCastToDateTime method
Implementation
DateTime? tryCastToDateTime() {
if (this == null) {
return null;
}
return this!.value.tryCastToDateTime();
}
DateTime? tryCastToDateTime() {
if (this == null) {
return null;
}
return this!.value.tryCastToDateTime();
}