core/web_debug_stub library
Properties
- isWebDebugAvailable → bool
-
Stub implementation for non-web platforms.
Debug object storage is only available on web.
Whether web debug is available on this platform.
no setter
- maxDebugKeys ↔ int
-
Maximum number of debug keys (no-op on non-web, but matches web API).
getter/setter pair
Functions
-
initWebDebug(
) → void - Initialize web debug storage (no-op on non-web).
-
webDebugClear(
) → void - Clear all debug objects (no-op on non-web).
-
webDebugDelete(
String key) → void - Delete a debug object (no-op on non-web).
-
webDebugKeys(
) → List< String> - Get all debug keys (returns empty on non-web).
-
webDebugPut(
String key, dynamic value) → void - Store a debug object (no-op on non-web).