DexchangeApiException constructor

DexchangeApiException({
  1. required String message,
  2. required int status,
})

Creates a new instance of DexchangeApiException.

The message parameter represents the error message associated with the exception. The status parameter represents the status code associated with the exception.

Implementation

DexchangeApiException({
  required this.message,
  required this.status,
});