timestamp property

DateTime get timestamp

Gets a DateTime representation of the timestamp for this value.

Implementation

DateTime get timestamp {
  _timestamp ??= DateTime.parse(ts!);
  return _timestamp!;
}