setEyelinerPath method Null safety
- String path
Set the eyeliner effect using an absolute resource path.
String path - The absolute path of the eyeliner resource, used to specify the location of the custom eyeliner effect resource file.
Precautions: Use after initializing ZegoEffects.
Applicable version: >= 2.1.0
Implementation
Future<void> setEyelinerPath(String path) async {
return await _channel.invokeMethod('setEyelinerPath', {'path': path});
}