InternalServerError constructor

const InternalServerError({
  1. String? message,
  2. ErrorType errorType = ErrorType.internalServerError,
})

Implementation

const InternalServerError({
  String? message,
  ErrorType errorType = ErrorType.internalServerError,
}) : super(errorType, message: message);