getCookiePreferences method

Future<Map<String, dynamic>?> getCookiePreferences()

Retrieves the current cookie preferences from platform storage.

Returns a map of cookie types to their consent status, or null if no preferences are stored.

Implementation

Future<Map<String, dynamic>?> getCookiePreferences() {
  throw UnimplementedError(
      'getCookiePreferences() has not been implemented.');
}