CafFailureResponse constructor

const CafFailureResponse({
  1. required String? response,
  2. required CafFailureType type,
  3. required String? description,
})

Implementation

const CafFailureResponse({
  required this.response,
  required this.type,
  required this.description,
});