logEvents property
A broadcast stream of raw SDK log-message maps produced by the native SDK's global log sink.
Each event map carries level ('error' / 'info' / 'debug'),
instanceId, and message. The sink is global on the native side: one
stream carries the output of every TrustPin instance. The native sink is
installed when the first Dart subscription starts and removed when the
last one cancels.
Implementation
Stream<Map<Object?, Object?>> get logEvents {
throw UnimplementedError('logEvents has not been implemented.');
}