setEyeshadowPath method Null safety

Future<void> setEyeshadowPath(
  1. String path
)

Set the eyeshadow effect using an absolute resource path.

String path - The absolute path of the eyeshadow resource, used to specify the location of the custom eyeshadow effect resource file.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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