setBlusherPath method Null safety

Future<void> setBlusherPath(
  1. String path
)

Set the blush effect using an absolute resource path.

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

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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