toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (encryptedKeyPassword != null)
'encryptedKeyPassword': encryptedKeyPassword!,
if (expiration != null) 'expiration': expiration!,
if (id != null) 'id': id!,
if (isDefault != null) 'isDefault': isDefault!,
if (issuerCn != null) 'issuerCn': issuerCn!,
if (pem != null) 'pem': pem!,
if (pkcs12 != null) 'pkcs12': pkcs12!,
};