getUserConsentStatus static method
- @Deprecated("Use CAS.settings.getUserConsentStatus() instead")
Implementation
@Deprecated("Use CAS.settings.getUserConsentStatus() instead")
static Future<UserConsent> getUserConsentStatus() async {
final ConsentStatus consent = await CAS.settings.getUserConsent();
return UserConsent.values[consent.index];
}