// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. library response; /// An HTTP response where the entire response body is known in advance. class Response { const Response(this.body, this.statusCode); final String body; final int statusCode; }