DetaResponse<T> constructor

DetaResponse<T>({
  1. T? body,
  2. int? statusCode,
})

Contains the information from the http response.

Implementation

DetaResponse({this.body, this.statusCode});