toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cookie = this.cookie;
final header = this.header;
final query = this.query;
final valuePrefix = this.valuePrefix;
return {
'cookie': ?cookie,
'header': ?header,
'query': ?query,
'valuePrefix': ?valuePrefix,
};
}