setOptOut static method

Future<void> setOptOut(
  1. bool value
)

Method to allow user to Opt out of sending data to CleverTap as per GDPR rules

Implementation

static Future<void> setOptOut(bool value) async {
  return await _dartToNativeMethodChannel.invokeMethod('setOptOut', {'value': value});
}