HttpFailureResponse constructor

const HttpFailureResponse({
  1. required String path,
  2. required Map<String, dynamic> error,
  3. required int statusCode,
})

Implementation

const HttpFailureResponse({
  required this.path,
  required this.error,
  required this.statusCode,
});