getBeautyManager method
Get the beauty filter management object, you can modify the beauty, filter, redness and other parameters
Platform not supported:
- web
- Windows
Implementation
TXBeautyManager getBeautyManager() {
if (_txBeautyManager == null) {
_cloudChannel!.invokeMethod('getBeautyManager');
_txBeautyManager = new TXBeautyManager(_cloudChannel!);
}
return _txBeautyManager!;
}