Request constructor

Request(
  1. String method,
  2. String path,
  3. List<MapEntry<String, String>> headers,
  4. List<MapEntry<String, String>> queryParameters,
  5. String? body,
)

Implementation

Request(
  this.method,
  this.path,
  this.headers,
  this.queryParameters,
  this.body,
);