VaultEntry.loaded constructor
VaultEntry.loaded(})
Creates a loaded VaultEntry
key: The vault keycreationTime: The vault creation timevalue: The vault valueaccessTime: The vault access timeupdateTime: The vault update time
Implementation
VaultEntry.loaded(String key, DateTime creationTime, dynamic value,
{DateTime? accessTime, DateTime? updateTime})
: this._(
VaultInfo(key, creationTime,
accessTime: accessTime, updateTime: updateTime),
value,
EntryState.loaded);