Response constructor
Response({
- dynamic data,
- ResponseType responseType = ResponseType.none,
- int httpStatusCode = HttpStatus.ok,
- Map<
String, String> headers = const {},
Implementation
Response({
this.data,
this.responseType = ResponseType.none,
this.httpStatusCode = HttpStatus.ok,
this.headers = const {},
});