updateConsent static method

  1. @Deprecated("Will be changed to new API in future releases.")
Future<void> updateConsent(
  1. bool? boolConsent
)

Update user boolConsent value for Appodeal SDK and Ad networks

If you use ConsentManager you may not provide boolConsent, otherwise provide if user has given or reject consent to the processing of personal data relating to him or her.

Implementation

@Deprecated("Will be changed to new API in future releases.")
static Future<void> updateConsent(bool? boolConsent) async {
  return _channel.invokeMethod('updateConsent', {'boolConsent': boolConsent});
}