modelNotFound static method

SDKException modelNotFound(
  1. String modelId
)

Implementation

static SDKException modelNotFound(String modelId) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_MODEL_NOT_FOUND,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_MODEL,
  message: "Model '$modelId' not found.",
);