setGDPRConsent method

Future<bool> setGDPRConsent(
  1. bool consent
)

Sets the user's consent about advertising policy resolves with true and rejects with false if any issue had occurred

Implementation

Future<bool> setGDPRConsent(bool consent) async {
  if (!Platform.isAndroid) return false;
  return await _channel
          .invokeMethod('TapsellPlus.setGDPRConsent', {'consent': consent}) ??
      false;
}