setBlusher method Null safety

Future<void> setBlusher(
  1. String name
)

Set the blush effect.

String name - The name of the blush effect, used to select a predefined blush effect.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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