removeDataFor method
Future<void>
removeDataFor({
- required Set<
WebsiteDataType> dataTypes, - required List<
WebsiteDataRecord> dataRecords,
Removes website data of the given types for the given data records.
dataTypes
represents the website data types that should be removed.
dataRecords
represents the website data records to delete website data for.
Officially Supported Platforms/Implementations:
Implementation
Future<void> removeDataFor(
{required Set<WebsiteDataType> dataTypes,
required List<WebsiteDataRecord> dataRecords}) =>
platform.removeDataFor(dataTypes: dataTypes, dataRecords: dataRecords);