updateSharedPreferences static method

Future<bool?> updateSharedPreferences(
  1. String key,
  2. int value
)

Implementation

static Future<bool?> updateSharedPreferences(String key, int value) {
  return Ads.instance.channelConsent.invokeMethod('updateConsentSharedPreferences', {
    'key': key,
    'value': value,
  });
}