setBeautyLevel method

Future<void> setBeautyLevel(
  1. int beautyLevel
)

Set the strength of the beauty filter

Parameters:

beautyLevel Strength of the beauty filter. Value range: 09; 0 indicates that the filter is disabled, and the greater the value, the more obvious the effect.

Platform not supported:

  • web

Implementation

Future<void> setBeautyLevel(int beautyLevel) {
  return _channel
      .invokeMethod('setBeautyLevel', {"beautyLevel": beautyLevel});
}