ResponseError.unprocessableEntity constructor

ResponseError.unprocessableEntity(
  1. {required String message,
  2. String? context,
  3. String? target}
)

Builds a unprocessable entity ResponseError with ErrorCode.unprocessableEntity and:

  • message: The error message
  • context: The context of execution when the error ocurred
  • target: The target entity of the API that triggered this error

Implementation

ResponseError.unprocessableEntity(
    {required String message, String? context, String? target})
    : this(
          code: ErrorCode.unprocessableEntity,
          message: message,
          context: context,
          target: target);