toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backendLatency = this.backendLatency;
final code = this.code;
final headers = this.headers;
final size = this.size;
final time = this.time;
return {
'backendLatency': ?backendLatency,
'code': ?code,
'headers': ?headers,
'size': ?size,
'time': ?time,
};
}