notInitialized static method
Implementation
static SDKException notInitialized([String? message]) => _build(
code: pb_enum.ErrorCode.ERROR_CODE_NOT_INITIALIZED,
category: pb_enum.ErrorCategory.ERROR_CATEGORY_COMPONENT,
message:
message ??
'RunAnywhere SDK is not initialized. Call initialize() first.',
);