toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.issuer != null) {
json[r'issuer'] = this.issuer;
} else {
json[r'issuer'] = null;
}
if (this.authTime != null) {
json[r'auth_time'] = this.authTime;
} else {
json[r'auth_time'] = null;
}
if (this.issuedAt != null) {
json[r'issued_at'] = this.issuedAt;
} else {
json[r'issued_at'] = null;
}
if (this.expiresAt != null) {
json[r'expires_at'] = this.expiresAt;
} else {
json[r'expires_at'] = null;
}
return json;
}