PublicKeyMetadataObjectBuilder constructor
PublicKeyMetadataObjectBuilder({})
Implementation
PublicKeyMetadataObjectBuilder({
String? algorithm,
String? keyId,
String? keyIdShort,
String? creationTime,
String? fingerprint,
String? keyIdNumeric,
bool? isSubKey,
bool? canSign,
bool? canEncrypt,
List<IdentityObjectBuilder>? identities,
List<PublicKeyMetadataObjectBuilder>? subKeys,
}) : _algorithm = algorithm,
_keyId = keyId,
_keyIdShort = keyIdShort,
_creationTime = creationTime,
_fingerprint = fingerprint,
_keyIdNumeric = keyIdNumeric,
_isSubKey = isSubKey,
_canSign = canSign,
_canEncrypt = canEncrypt,
_identities = identities,
_subKeys = subKeys;