RequestDetails class
Constructors
- RequestDetails({String? requestName, required String requestMethod, required String url, required int statusCode, dynamic headers, dynamic requestBody, dynamic responseBody, required DateTime sentTime})
- RequestDetails.fromJson(String source)
-
factory
-
RequestDetails.fromMap(Map<
String, dynamic> map) -
factory
Properties
- hashCode → int
-
The hash code for this object.
no setteroverride
- headers → dynamic
-
final
- requestBody → dynamic
-
final
- requestMethod → String
-
final
- requestName → String?
-
final
- responseBody → dynamic
-
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- sentTime → DateTime
-
final
- statusCode → int
-
final
- url → String
-
final
Methods
-
copyWith(
{String? requestName, String? requestMethod, String? url, int? statusCode, dynamic headers, dynamic requestBody, dynamic responseBody, DateTime? sentTime}) → RequestDetails -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → String -
toMap(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override