CustomErrorResponses constructor

CustomErrorResponses({
  1. required int quantity,
  2. List<CustomErrorResponse>? items,
})

Implementation

CustomErrorResponses({
  required this.quantity,
  this.items,
});