ResponseError.notFound constructor

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

Builds a not found ResponseError with ErrorCode.notFound 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.notFound(
    {required String message, String? context, String? target})
    : this(
          code: ErrorCode.notFound,
          message: message,
          context: context,
          target: target);