deleteOrigin method

Future<void> deleteOrigin({
  1. required String origin,
})

Clears the storage currently being used by both the Application Cache and Web SQL Database APIs by the given origin. The origin is specified using its string representation.

Officially Supported Platforms/Implementations:

Implementation

Future<void> deleteOrigin({required String origin}) =>
    platform.deleteOrigin(origin: origin);