saveCookiePreferences method

Future<void> saveCookiePreferences(
  1. Map<String, dynamic> preferences
)

Saves the given cookie preferences to platform storage.

preferences should be a map of cookie types to their consent status.

Implementation

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