HttpUtil class

HTTP related utilities

Constructors

HttpUtil()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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

decodePostedParameters(Stream<List<int>> request, {Map<String, String>? parameters, int? maxLength}) Future<Map<String, String>>
Decodes the parameters of the POST request.
decodeQuery(String queryString, {Map<String, String>? parameters}) Map<String, String>
Decodes the query string into a map of name-value pairs (aka., parameters). *
encodeQuery(Map<String, dynamic> parameters) String
Encodes the given paramters into a query string.