Timestamp constructor

Timestamp(
  1. DateTime date
)

Renders a timestamp in "HH:mm:ss.mmm" format (time only, no date).

Use this for compact log output where the date is not needed. For full date and time, use FullTimestamp instead.

Example output: 10:30:45.123

Implementation

Timestamp(this.date);