VaultEntry.updated constructor
Creates an updated VaultEntry
info
: The vault info of the original entryvalue
: The cache valueupdateTime
: The cache update time
Implementation
VaultEntry.updated(VaultInfo info, dynamic value, DateTime updateTime)
: this._(
VaultInfo(info.key, info.creationTime,
accessTime: info.accessTime, updateTime: updateTime),
value,
EntryState.updated);