DataEvent class sealed

Event emitted on AtClient.dataEvents whenever a keystore mutation passes through LocalSecondary's chokepoint methods (_update / _delete). Subscribers see every change driven by this client — local app writes AND sync-applied remote changes — in a single uniform stream.

Sealed so listeners can pattern-match against the two concrete subtypes (DataUpdated / DataDeleted) exhaustively.

Note: LocalSecondary.putValue (used internally for SDK bookkeeping like enrollment / cryptographic key material) does NOT emit on this stream by design. App-data writes go through _update and DO emit.

Implementers

Properties

hashCode int
The hash code for this object.
no setterinherited
key AtKey
The full atKey of the affected record.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited