ApiError constructor

ApiError({
  1. required String type,
  2. required String title,
  3. required String desc,
  4. required String request,
})

Implementation

ApiError(
    {required this.type,
    required this.title,
    required this.desc,
    required this.request});