FTxNetworkResponse constructor

FTxNetworkResponse(
  1. String body,
  2. int statusCode,
  3. Response baseResponse
)

Implementation

FTxNetworkResponse(String body, int statusCode, http.Response baseResponse) {
  this._body = body;
  this._statusCode = statusCode;
  this._baseResponse = baseResponse;
}