public toDateTime(timeZone as TimeZone = TimeZone.UTC) as DateTime:
Converts this Timestamp to a DateTime object.
A DateTime object representing the same point in time. import klyn.time timestamp = Timestamp.now dateTime = timestamp.toDateTime() print(dateTime.toString()) # Output: current date and time