HttpInternalServerError<T> constructor

const HttpInternalServerError<T>({
  1. String slug = '',
  2. String msg = '',
  3. String stackTrace = '',
  4. Maybe<T> response = const Nothing(),
})

Implementation

const HttpInternalServerError({
  super.slug,
  super.msg,
  super.stackTrace,
  super.response,
}) : super(
        code: 500,
      );