getQuotaForOrigin method

Future<int> getQuotaForOrigin(
  1. {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.

Implementation

Future<int> getQuotaForOrigin({required String origin}) async {
  return await WebStorageManager.instance().getQuotaForOrigin(origin: origin);
}