ResponseError.unknown constructor

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

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