ResponseError.authorization constructor

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

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