ErrorResponse constructor

ErrorResponse({
  1. required int status,
  2. required String code,
  3. required String message,
})

Implementation

ErrorResponse({
  required this.status,
  required this.code,
  required this.message,
});