PublicKeyMetadata constructor

PublicKeyMetadata(
  1. String algorithm,
  2. String keyId,
  3. String keyIdShort,
  4. String creationTime,
  5. String fingerprint,
  6. String keyIdNumeric,
  7. bool isSubKey,
  8. bool canSign,
  9. bool canEncrypt,
  10. List<Identity> identities,
)

Implementation

PublicKeyMetadata(
    this.algorithm,
    this.keyId,
    this.keyIdShort,
    this.creationTime,
    this.fingerprint,
    this.keyIdNumeric,
    this.isSubKey,
    this.canSign,
    this.canEncrypt,
    this.identities);