ApiError constructor

ApiError({
  1. required int status,
  2. required String type,
  3. required String title,
  4. required String detail,
})

Implementation

ApiError(
  {required this.status,
  required this.type,
  required this.title,
  required this. detail});