setPounchRemoveLevel method

Future<void> setPounchRemoveLevel(
  1. double pounchRemoveLevel
)

设置祛眼袋,该接口仅在 企业版 SDK 中生效

参数:

pounchRemoveLevel 祛眼袋级别,取值范围0 - 9; 0表示关闭,1 - 9值越大,效果越明显。

Implementation

Future<void> setPounchRemoveLevel(double pounchRemoveLevel) {
  return _channel.invokeMethod(
      'setPounchRemoveLevel', {"level": pounchRemoveLevel.toString()});
}