RequestResponse<T> constructor

RequestResponse<T>(
  1. int? httpCode,
  2. bool isSuccess,
  3. T data, {
  4. RenovationError? exc,
  5. ErrorDetail? error,
  6. Response<String>? rawResponse,
})

Implementation

RequestResponse(this.httpCode, this.isSuccess, this.data,
    {this.exc, this.error, this.rawResponse});