AdropConsentResult constructor

AdropConsentResult({
  1. required AdropConsentStatus status,
  2. required bool canRequestAds,
  3. required bool canShowPersonalizedAds,
  4. String? error,
})

Implementation

AdropConsentResult({
  required this.status,
  required this.canRequestAds,
  required this.canShowPersonalizedAds,
  this.error,
});