Request constructor
Request({
- required RequestContext context,
- ContentType? contentType,
- Body? body,
- Map<
String, List< ? headers,String> > - List<
Cookie> ? cookies, - Methods? method,
Creates with subclasses
Implementation
Request(
{required RequestContext context,
ContentType? contentType,
Body? body,
this.headers,
this.cookies,
this.method})
: super(body: body, context: context, contentType: contentType);