sliderValueChange static method

Future sliderValueChange(
  1. int subBizType,
  2. double value,
  3. String strValue
)

value 强度值 strvalue 滤镜字符串值,非滤镜可以传空字符串 subBizType 具体子类型,瘦脸、窄脸这些

Implementation

static Future sliderValueChange(
    int subBizType, double value, String strValue) async {
  channel.invokeMethod(beauty, {
    "method": "sliderValueChange",
    "subBizType": subBizType,
    "value": value,
    "strValue": strValue
  });
}