updateRequestConfiguration method

Future<void> updateRequestConfiguration(
  1. VponRequestConfiguration requestConfiguration
)

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,
    },
  );
}