Header constructor

Header({
  1. Security? security,
  2. AppSequence? appSequence,
  3. String? messageID,
  4. String? relatesTo,
  5. String? to,
  6. String? action,
})

Implementation

Header({
  this.security,
  this.appSequence,
  this.messageID,
  this.relatesTo,
  this.to,
  this.action,
});