setEyelashes method Null safety

Future<void> setEyelashes(
  1. String name
)

Set the eyelashes effect.

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

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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