toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appEngineRouting = this.appEngineRouting;
final body = this.body;
final headers = this.headers;
final httpMethod = this.httpMethod;
final relativeUri = this.relativeUri;
return {
'appEngineRouting': ?appEngineRouting,
'body': ?body,
'headers': ?headers,
'httpMethod': ?httpMethod,
'relativeUri': ?relativeUri,
};
}