setIsAgeRestrictedUser static method
Set whether user is age-restricted (COPPA)
Children's Online Privacy Protection Act compliance. Data clearing is implemented but not included in bid requests (server limitation).
Implementation
static Future<void> setIsAgeRestrictedUser(bool isAgeRestricted) async {
await _invokeMethod('setIsAgeRestrictedUser', {
'isAgeRestrictedUser': isAgeRestricted,
});
}