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}) {
  throw UnimplementedError(
      'fetchDataRecords is not implemented on the current platform');
}