filterSliderValueChange static method

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

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

Implementation

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