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