setIsChildDirected method
- bool isChildDirected
Allows to set if app should be treated as child-directed.
Implementation
Future<void> setIsChildDirected(bool isChildDirected) async {
try {
await AatkitFlutterPluginPlatform.instance
.setIsChildDirected(isChildDirected);
} on PlatformException catch (e) {
aatkitLog("PlatformException, error: $e");
}
}