notInitialized static method

SDKException notInitialized([
  1. String? message
])

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.',
);