toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final maxAgeSeconds = this.maxAgeSeconds;
final method = this.method;
final origin = this.origin;
final responseHeader = this.responseHeader;
return {
'maxAgeSeconds': ?maxAgeSeconds,
'method': ?method,
'origin': ?origin,
'responseHeader': ?responseHeader,
};
}