toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final encryptedKeyPassword = this.encryptedKeyPassword;
  final expiration = this.expiration;
  final id = this.id;
  final isDefault = this.isDefault;
  final issuerCn = this.issuerCn;
  final pem = this.pem;
  final pkcs12 = this.pkcs12;
  return {
    'encryptedKeyPassword': ?encryptedKeyPassword,
    'expiration': ?expiration,
    'id': ?id,
    'isDefault': ?isDefault,
    'issuerCn': ?issuerCn,
    'pem': ?pem,
    'pkcs12': ?pkcs12,
  };
}