setEyeliner method Null safety

Future<void> setEyeliner(
  1. String name
)

Set the eyeliner effect.

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

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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