RestException constructor

RestException({
  1. String? message,
  2. dynamic dataResponse,
  3. StackTrace? stackTrace,
})

Implementation

RestException({
  this.message,
  this.dataResponse,
  this.stackTrace,
});