toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final hexSerialNumber = this.hexSerialNumber;
final lifetime = this.lifetime;
final notAfterTime = this.notAfterTime;
final notBeforeTime = this.notBeforeTime;
final subject = this.subject;
final subjectAltName = this.subjectAltName;
return {
'hexSerialNumber': ?hexSerialNumber,
'lifetime': ?lifetime,
'notAfterTime': ?notAfterTime,
'notBeforeTime': ?notBeforeTime,
'subject': ?subject,
'subjectAltName': ?subjectAltName,
};
}