Request constructor
Request({})
Implementation
Request({
required this.method,
required this.url,
required this.headers,
required Stream<List<int>> bodyStream,
Map<String, String>? params,
}) : params = params == null
? <String, String>{}
: Map<String, String>.from(params),
body = Body(bodyStream);