fetchDataRecords method

Future<List<WebsiteDataRecord>> fetchDataRecords({
  1. required Set<WebsiteDataType> dataTypes,
})

Fetches data records containing the given website data types.

dataTypes represents the website data types to fetch records for.

Officially Supported Platforms/Implementations:

Implementation

Future<List<WebsiteDataRecord>> fetchDataRecords(
        {required Set<WebsiteDataType> dataTypes}) =>
    platform.fetchDataRecords(dataTypes: dataTypes);