Info constructor
Builds a Info
key: The keycreationTime: The creation timeaccessTime: The access timeupdateTime: The update time
Implementation
Info(this.key, this.creationTime,
{DateTime? accessTime, DateTime? updateTime})
: accessTime = accessTime ?? creationTime,
updateTime = updateTime ?? creationTime;