vlmCancelled static method

SDKException vlmCancelled([
  1. String? message
])

Implementation

static SDKException vlmCancelled([String? message]) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_CANCELLED,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_INTERNAL,
  message: message ?? 'VLM generation was cancelled.',
);