reset method

Future<void> reset()

Reset consent information (for testing/debugging)

Implementation

Future<void> reset() async {
  try {
    await _methodChannel.invokeMethod(AdropMethod.resetConsent);
  } catch (e) {
    log('Error resetting consent: $e', name: 'AdropConsentManager');
  }
}