VaultInfo constructor

VaultInfo(
  1. String key,
  2. DateTime creationTime, {
  3. DateTime? accessTime,
  4. DateTime? updateTime,
})

Builds a VaultInfo

  • key: The vault key
  • creationTime: The vault creation time
  • accessTime: The vault access time
  • updateTime: The vault update time

Implementation

VaultInfo(super.key, super.creationTime,
    {super.accessTime, super.updateTime});