ServerResponseException constructor

ServerResponseException({
  1. required String message,
  2. int? statusCode,
  3. dynamic data,
})

Creates a new ServerResponseException.

Implementation

ServerResponseException({
  required super.message,
  super.statusCode,
  super.data,
});