shouldConsentBeCollected property

  1. @Deprecated("Use shouldUserStatusBeCollected instead.")
Future<bool> shouldConsentBeCollected

Check if user consent are partial or not set

Implementation

@Deprecated("Use shouldUserStatusBeCollected instead.")
static Future<bool> get shouldConsentBeCollected async {
  final bool result = await _channel.invokeMethod('shouldConsentBeCollected');
  return result;
}