getAllContainerNames method
- @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'ProfileStore.getAllProfileNames', apiUrl: 'https://developer.android.com/reference/androidx/webkit/ProfileStore#getAllProfileNames()', available: '110'), IOSPlatform(apiName: 'WKWebsiteDataStore.fetchAllDataStoreIdentifiers', apiUrl: 'https://developer.apple.com/documentation/webkit/wkwebsitedatastore/4041132-fetchalldatastoreidentifiers', available: '17.0'), MacOSPlatform(apiName: 'WKWebsiteDataStore.fetchAllDataStoreIdentifiers', apiUrl: 'https://developer.apple.com/documentation/webkit/wkwebsitedatastore/4041132-fetchalldatastoreidentifiers', available: '14.0'), WindowsPlatform(apiName: 'CoreWebView2Environment userDataFolder', apiUrl: 'https://learn.microsoft.com/microsoft-edge/webview2/concepts/user-data-folder'), LinuxPlatform(apiName: 'WebKitWebsiteDataManager persistent directories', apiUrl: 'https://webkitgtk.org/reference/webkit2gtk/stable/class.WebsiteDataManager.html')])
Returns all named persistent containers.
Implementation
@SupportedPlatforms(
platforms: [
AndroidPlatform(
apiName: 'ProfileStore.getAllProfileNames',
apiUrl:
'https://developer.android.com/reference/androidx/webkit/ProfileStore#getAllProfileNames()',
available: '110',
),
IOSPlatform(
apiName: 'WKWebsiteDataStore.fetchAllDataStoreIdentifiers',
apiUrl:
'https://developer.apple.com/documentation/webkit/wkwebsitedatastore/4041132-fetchalldatastoreidentifiers',
available: '17.0',
),
MacOSPlatform(
apiName: 'WKWebsiteDataStore.fetchAllDataStoreIdentifiers',
apiUrl:
'https://developer.apple.com/documentation/webkit/wkwebsitedatastore/4041132-fetchalldatastoreidentifiers',
available: '14.0',
),
WindowsPlatform(
apiName: 'CoreWebView2Environment userDataFolder',
apiUrl:
'https://learn.microsoft.com/microsoft-edge/webview2/concepts/user-data-folder',
),
LinuxPlatform(
apiName: 'WebKitWebsiteDataManager persistent directories',
apiUrl:
'https://webkitgtk.org/reference/webkit2gtk/stable/class.WebsiteDataManager.html',
),
],
)
Future<List<String>> getAllContainerNames() {
throw UnimplementedError(
'getAllContainerNames is not implemented on the current platform',
);
}