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