setBeautyLevel method
Set the strength of the beauty filter
Parameters:
beautyLevel
Strength of the beauty filter. Value range: 0
–9
; 0
indicates that the filter is disabled, and the greater the value, the more obvious the effect.
Implementation
Future<void> setBeautyLevel(int beautyLevel) {
return _channel
.invokeMethod('setBeautyLevel', {"beautyLevel": beautyLevel.toString()});
}