setChildDirectedTreatment static method

Future<void> setChildDirectedTreatment(
  1. bool value
)

Disables data collection for kids apps

If value true that to disable data collection for kids apps

Implementation

static Future<void> setChildDirectedTreatment(bool value) async {
  return _channel.invokeMethod('setChildDirectedTreatment', {'value': value});
}