LokotroHttpResponse<T> constructor

LokotroHttpResponse<T>({
  1. T? data,
  2. required int statusCode,
  3. required String message,
  4. required bool isSuccess,
  5. Map<String, List<String>>? headers,
  6. dynamic rawResponse,
  7. dynamic error,
})

Implementation

LokotroHttpResponse({
  this.data,
  required this.statusCode,
  required this.message,
  required this.isSuccess,
  this.headers,
  this.rawResponse,
  this.error,
});