Signature constructor

Signature({
  1. required String hash,
  2. required String signature,
  3. String? subjectDN,
  4. String? issuerDN,
  5. String? serialNumber,
  6. DateTime? notBefore,
  7. DateTime? notAfter,
  8. String? publicKeyAlgorithm,
  9. String? publicKeyFormat,
  10. Uint8List? publicKeyEncoded,
  11. String? publicKey,
  12. String? publicKeyHash,
})

Implementation

Signature({
  required this.hash,
  required this.signature,
  this.subjectDN,
  this.issuerDN,
  this.serialNumber,
  this.notBefore,
  this.notAfter,
  this.publicKeyAlgorithm,
  this.publicKeyFormat,
  this.publicKeyEncoded,
  this.publicKey,
  this.publicKeyHash,
});