VaultEntryRemovedEvent<T> constructor

VaultEntryRemovedEvent<T>(
  1. Vault<T> source,
  2. VaultInfo entry
)

Builds a VaultEntryRemovedEvent

  • source: The vault that originated the event
  • entry: The removed entry

Implementation

VaultEntryRemovedEvent(Vault<T> source, this.entry)
    : super(source, VaultEventType.removed);