Response constructor

Response({
  1. required int statusCode,
  2. dynamic data,
  3. Map<String, String> headers = const {HttpHeaders.contentTypeHeader : 'application/json'},
  4. String contentType = 'application/json',
})

Implementation

Response({
  required this.statusCode,
  this.data,
  this.headers = const {
    HttpHeaders.contentTypeHeader: 'application/json',
  },
  this.contentType = 'application/json',
});