setUnderAgeOfPromise method

Future<bool?> setUnderAgeOfPromise(
  1. bool ageOfPromise
)

Implementation

Future<bool?> setUnderAgeOfPromise(bool ageOfPromise) async {
  return await Ads.instance.channelConsent.invokeMethod(
    'setUnderAgeOfPromise',
    <String, dynamic>{
      'ageOfPromise': ageOfPromise,
    },
  );
}