getQuotaForOrigin method
- required String origin,
Gets the storage quota for the Web SQL Database API for the given origin.
The quota is given in bytes and the origin is specified using its string representation.
Note that a quota is not enforced on a per-origin basis for the Application Cache API.
Officially Supported Platforms/Implementations:
- Android WebView (Official API - WebStorage.getQuotaForOrigin)
Parameters - Officially Supported Platforms/Implementations:
origin: all platforms
Use the PlatformWebStorageManager.isMethodSupported method to check if this method is supported at runtime.
Implementation
Future<int> getQuotaForOrigin({required String origin}) =>
platform.getQuotaForOrigin(origin: origin);