DateTime timestamp

Gets a DateTime representation of the timestamp for this value.

Source

DateTime get timestamp {
  if (_timestamp == null) {
    _timestamp = DateTime.parse(ts);
  }
  return _timestamp;
}