setLipstickPath method

Future<void> setLipstickPath(
  1. String path
)

使用绝对资源路径设置口红功能。

@param {string} path - 口红资源的绝对路径,用于指定自定义口红效果的资源文件位置。

Implementation

Future<void> setLipstickPath(String path) async {
  return await _channel.invokeMethod('setLipstickPath', {'path': path});
}