toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final certSign = this.certSign;
final contentCommitment = this.contentCommitment;
final crlSign = this.crlSign;
final dataEncipherment = this.dataEncipherment;
final decipherOnly = this.decipherOnly;
final digitalSignature = this.digitalSignature;
final encipherOnly = this.encipherOnly;
final keyAgreement = this.keyAgreement;
final keyEncipherment = this.keyEncipherment;
return {
'certSign': ?certSign,
'contentCommitment': ?contentCommitment,
'crlSign': ?crlSign,
'dataEncipherment': ?dataEncipherment,
'decipherOnly': ?decipherOnly,
'digitalSignature': ?digitalSignature,
'encipherOnly': ?encipherOnly,
'keyAgreement': ?keyAgreement,
'keyEncipherment': ?keyEncipherment,
};
}