HttpRequest constructor
HttpRequest({
- String method = '',
- String uri = '',
- List<
HttpHeader> headers = const [], - Uint8List? body,
Implementation
HttpRequest({
this.method = '',
this.uri = '',
this.headers = const [],
Uint8List? body,
}) : body = body ?? Uint8List(0),
super(fullyQualifiedName);