ResponseException constructor

ResponseException({
  1. required int code,
  2. required String humanMessage,
  3. required String message,
})

Main constructor

Implementation

ResponseException({
  required this.code,
  required this.humanMessage,
  required this.message,
});