ServerException constructor

ServerException({
  1. required List<String> messages,
  2. String? code = "ServerException",
  3. int? statusCode,
  4. String? serverStack,
  5. String? original,
  6. BaseRequest? request,
})

Implementation

ServerException({
  required this.messages,
  this.code = "ServerException",
  this.statusCode,
  this.serverStack,
  this.original,
  this.request,
});