EventDetails constructor

EventDetails({
  1. int? publisher,
  2. int? trustlevel,
  3. String? topic,
  4. String? pptScheme,
  5. String? pptSerializer,
  6. String? pptCipher,
  7. String? pptKeyid,
})

Implementation

EventDetails(
    {this.publisher,
    this.trustlevel,
    this.topic,
    String? pptScheme,
    String? pptSerializer,
    String? pptCipher,
    String? pptKeyid}) {
  pptScheme = pptScheme;
  pptSerializer = pptSerializer;
  pptCipher = pptCipher;
  pptKeyId = pptKeyid;
}