toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.revocationReason != null) {
json[r'revocation_reason'] = this.revocationReason;
} else {
json[r'revocation_reason'] = null;
}
return json;
}