HttpProfileRequestRef class

Profiling information for a single HTTP request.

Implementers

Constructors

HttpProfileRequestRef({required String isolateId, required String id, required String method, required Uri uri, required List<HttpProfileRequestEvent> events, required DateTime startTime, DateTime? endTime, HttpProfileRequestData? request, HttpProfileResponseData? response})

Properties

endTime DateTime?
The time at which this request was completed.
final
events List<HttpProfileRequestEvent>
Events related to this HTTP request.
final
hashCode int
The hash code for this object.
no setterinherited
id String
The ID associated with this request.
final
isolateId String
final
isRequestComplete bool
Returns true if the initial HTTP request has completed.
no setter
isResponseComplete bool
Returns true if the entirety of the response has been received.
no setter
method String
The HTTP request method associated with this request.
final
request HttpProfileRequestData?
Details about the request.
final
response HttpProfileResponseData?
Details about the response.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startTime DateTime
The time at which this request was initiated.
final
uri Uri
The URI to which this HTTP request was sent.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

parse(Map<String, dynamic>? json) HttpProfileRequestRef?