modelIncompatible static method

SDKException modelIncompatible(
  1. String modelId,
  2. String reason
)

Implementation

static SDKException modelIncompatible(String modelId, String reason) =>
    _build(
      code: pb_enum.ErrorCode.ERROR_CODE_MODEL_INCOMPATIBLE,
      category: pb_enum.ErrorCategory.ERROR_CATEGORY_MODEL,
      message: "Model '$modelId' is incompatible: $reason",
    );