Response constructor

Response({
  1. dynamic data,
  2. ResponseType responseType = ResponseType.none,
  3. int httpStatusCode = HttpStatus.ok,
  4. Map<String, String> headers = const {},
})

Implementation

Response({
  this.data,
  this.responseType = ResponseType.none,
  this.httpStatusCode = HttpStatus.ok,
  this.headers = const {},
});