setEyeshadowPath method

Future<void> setEyeshadowPath(
  1. String path
)

使用绝对资源路径设置眼影功能。

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

Implementation

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