toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowSubjectAltNamesPassthrough =
this.allowSubjectAltNamesPassthrough;
final allowSubjectPassthrough = this.allowSubjectPassthrough;
final celExpression = this.celExpression;
return {
'allowSubjectAltNamesPassthrough': ?allowSubjectAltNamesPassthrough,
'allowSubjectPassthrough': ?allowSubjectPassthrough,
'celExpression': ?celExpression,
};
}