RawHttpResponse constructor

const RawHttpResponse({
  1. required int? statusCode,
  2. required dynamic data,
  3. required String path,
})

Implementation

const RawHttpResponse({
  required this.statusCode,
  required this.data,
  required this.path,
});