setEyelashesPath method

Future<void> setEyelashesPath(
  1. String path
)

使用绝对资源路径设置睫毛功能。

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

Implementation

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