InternalServerError constructor

InternalServerError({
  1. required dynamic message,
  2. int code = HttpStatus.internalServerError,
})

Implementation

InternalServerError({
  required super.message,
  super.code = HttpStatus.internalServerError,
});