PrivateKeyMetadataObjectBuilder constructor

PrivateKeyMetadataObjectBuilder({
  1. String? keyId,
  2. String? keyIdShort,
  3. String? creationTime,
  4. String? fingerprint,
  5. String? keyIdNumeric,
  6. bool? isSubKey,
  7. bool? encrypted,
  8. bool? canSign,
  9. List<IdentityObjectBuilder>? identities,
  10. List<PrivateKeyMetadataObjectBuilder>? subKeys,
})

Implementation

PrivateKeyMetadataObjectBuilder({
  String? keyId,
  String? keyIdShort,
  String? creationTime,
  String? fingerprint,
  String? keyIdNumeric,
  bool? isSubKey,
  bool? encrypted,
  bool? canSign,
  List<IdentityObjectBuilder>? identities,
  List<PrivateKeyMetadataObjectBuilder>? subKeys,
})  : _keyId = keyId,
      _keyIdShort = keyIdShort,
      _creationTime = creationTime,
      _fingerprint = fingerprint,
      _keyIdNumeric = keyIdNumeric,
      _isSubKey = isSubKey,
      _encrypted = encrypted,
      _canSign = canSign,
      _identities = identities,
      _subKeys = subKeys;