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