TrustPinLogEvent constructor

const TrustPinLogEvent({
  1. required TrustPinLogLevel level,
  2. required String instanceId,
  3. required String message,
})

Creates a log event. Exposed for testing; production events are constructed from the platform stream.

Implementation

const TrustPinLogEvent({
  required this.level,
  required this.instanceId,
  required this.message,
});