updateRequestConfiguration method
Implementation
Future<void> updateRequestConfiguration(
VponRequestConfiguration requestConfiguration) {
return channel.invokeMethod<void>(
'updateRequestConfiguration',
<dynamic, dynamic>{
'maxAdContentRating': requestConfiguration.maxAdContentRating,
'tagForChildDirectedTreatment':
requestConfiguration.tagForChildDirectedTreatment,
'testDeviceIds': requestConfiguration.testDeviceIds,
'tagForUnderAgeOfConsent': requestConfiguration.tagForUnderAgeOfConsent,
},
);
}