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